Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

FIX: args for nr

+8 -3
+4 -2
noah-home.nix
··· 154 154 programs.ssh = { 155 155 enable = true; 156 156 addKeysToAgent = "yes"; 157 - } 158 - programs.ssh-agent.enable = true; 157 + }; 158 + 159 + services.ssh-agent.enable = true; 160 + 159 161 programs.ssh.extraConfig = builtins.readFile ./ssh/extra; 160 162 services.gpg-agent = { 161 163 enable = true;
+4 -1
scripts/nr
··· 3 3 flag e + 4 4 flag x + 5 5 6 - exec nix run 'nixpkgs#'^$* 6 + pkg=$1 7 + shift 8 + 9 + exec nix run 'nixpkgs#'^$pkg -- $*