diff options
Diffstat (limited to 'mun.nix')
| -rwxr-xr-x | mun.nix | 33 |
1 files changed, 17 insertions, 16 deletions
@@ -1,4 +1,9 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: { imports = [ @@ -21,6 +26,7 @@ # === Applications === discord + spotify # === Utilities === pay-respects @@ -47,22 +53,18 @@ }; }; + programs = { + ssh = { + enable = true; - - -programs = { - ssh = { - enable = true; - - # Disable legacy defaults (future-proof) - enableDefaultConfig = false; + # Disable legacy defaults (future-proof) + enableDefaultConfig = false; - matchBlocks."*" = { - addKeysToAgent = "yes"; - forwardAgent = false; # or true if you actually need it + matchBlocks."*" = { + addKeysToAgent = "yes"; + forwardAgent = false; # or true if you actually need it + }; }; - }; - zsh = { enable = true; @@ -90,6 +92,5 @@ programs = { }; services = { gnome-keyring.enable = true; - }; + }; } - |
