diff options
| author | Fuwn <[email protected]> | 2024-08-30 16:40:58 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-30 16:40:58 -0700 |
| commit | 52306bb5f72d31012e47cdc9735836f34129a2ec (patch) | |
| tree | 8ff9f9a55485c71b25fe85fc46de6d780c6e0fed /modules/programs/default.nix | |
| parent | update (diff) | |
| download | nixos-config-52306bb5f72d31012e47cdc9735836f34129a2ec.tar.xz nixos-config-52306bb5f72d31012e47cdc9735836f34129a2ec.zip | |
update
Diffstat (limited to 'modules/programs/default.nix')
| -rw-r--r-- | modules/programs/default.nix | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/modules/programs/default.nix b/modules/programs/default.nix index 0cec34e..df9231e 100644 --- a/modules/programs/default.nix +++ b/modules/programs/default.nix @@ -1,24 +1,14 @@ { pkgs, ... }: { - # imports = [ ./hyprland.nix ]; + imports = [ + ./gnupg.nix + ./nh.nix + ]; programs = { fish.enable = true; mtr.enable = true; dconf.enable = true; - - gnupg.agent = { - enable = true; - enableSSHSupport = true; - }; - - nh = { - enable = true; - - clean = { - enable = true; - extraArgs = "--keep-since 4d --keep 3"; - }; - }; + ssh.startAgent = false; }; } |