mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
Another saturday another useless formatter change. It's my dotfiles, after all alejandra doesn't handle c-style inline comments well.
29 lines
707 B
Nix
29 lines
707 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = [
|
|
pkgs.nil # nix
|
|
pkgs.pyright # python
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
signing.signByDefault = false; # no need to setup the key
|
|
};
|
|
|
|
programs.gpg.enable = true;
|
|
|
|
nix = {
|
|
settings = {
|
|
extra-substituters = [
|
|
"https://ghc-nix.cachix.org"
|
|
"https://haskell-language-server.cachix.org"
|
|
"https://cache.iog.io"
|
|
];
|
|
extra-trusted-public-keys = [
|
|
"ghc-nix.cachix.org-1:ziC/I4BPqeA4VbtOFpFpu6D1t6ymFvRWke/lc2+qjcg="
|
|
"haskell-language-server.cachix.org-1:juFfHrwkOxqIOZShtC4YC1uT1bBcq2RSvC7OMKx0Nz8="
|
|
"hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
|
|
];
|
|
};
|
|
};
|
|
}
|