File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,3 +36,8 @@ rebuild:
3636 @ sudo nix run nix-darwin -- switch --flake .#earlymoon --show-trace
3737
3838
39+ [linux ]
40+ rebuild :
41+ @ echo " 🍎🍎🍎 Rebuilding linux configuration 🍎🍎🍎"
42+ @ nix run home-manager/ master -- switch --flake .#wolf
43+
Original file line number Diff line number Diff line change @@ -18,8 +18,7 @@ home-manager.lib.homeManagerConfiguration {
1818 {
1919 home . username = "pwn" ;
2020 home . homeDirectory = "/home/pwn" ;
21- home . stateVersion = "25.05" ;
22-
21+ home . stateVersion = "24.05" ;
2322 }
2423 ] ;
2524}
Original file line number Diff line number Diff line change 22{
33 programs . ssh = {
44 enable = true ;
5-
65 enableDefaultConfig = false ;
76
87 matchBlocks = {
98 "*" = {
109 userKnownHostsFile = "${ config . xdg . dataHome } /ssh/known_hosts" ;
1110 identityFile = "${ config . xdg . dataHome } /ssh/id_rsa" ;
1211
13- extraOptions = {
14- AddKeysToAgent = "yes" ;
15- UseKeychain = if pkgs . stdenv . isDarwin then "yes" else "no" ;
16- } ;
12+ extraOptions =
13+ if pkgs . stdenv . isDarwin then
14+ {
15+ AddKeysToAgent = "yes" ;
16+ UseKeychain = "yes" ;
17+ }
18+ else
19+ {
20+ AddKeysToAgent = "yes" ;
21+ } ;
1722 } ;
1823
1924 "fawn" = {
You can’t perform that action at this time.
0 commit comments