System/machines/extremophile/home.nix

26 lines
493 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
nathan = {
2022-11-05 15:57:12 -04:00
programs = {
util = { git = { gpgSign = false; }; };
devel = {
2023-03-27 19:50:58 -04:00
idris2 = true;
2022-11-05 15:57:12 -04:00
haskell = false;
js = false;
raku = false;
python = false;
};
};
config = { isDesktop = true; };
};
# Setup git commit signing with ssh key
programs.git = {
extraConfig = {
2023-03-27 18:59:34 -04:00
commit.gpgsign = true;
gpg.format = "ssh";
2023-03-27 18:59:34 -04:00
user.signingkey = "~/.ssh/id_ed25519.pub";
};
};
}