summaryrefslogtreecommitdiff
path: root/accounts
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2026-09-26 12:21:50 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2026-09-26 12:21:50 +0200
commit74d97f767ac4d6f05ce95e388460a49c5190afc3 (patch)
tree664f38ae9b98878645ed7b5d5b94c3b7f06a7024 /accounts
parentab61d1b616894e3457fc62ff6eb6450010f54295 (diff)
downloadnixos-74d97f767ac4d6f05ce95e388460a49c5190afc3.tar
nixos-74d97f767ac4d6f05ce95e388460a49c5190afc3.tar.gz
nixos-74d97f767ac4d6f05ce95e388460a49c5190afc3.tar.bz2
nixos-74d97f767ac4d6f05ce95e388460a49c5190afc3.tar.xz
nixos-74d97f767ac4d6f05ce95e388460a49c5190afc3.zip
Diffstat (limited to 'accounts')
-rw-r--r--accounts/gkleen@skadhi/default.nix2
-rw-r--r--accounts/gkleen@skadhi/ssh/default.nix4
2 files changed, 5 insertions, 1 deletions
diff --git a/accounts/gkleen@skadhi/default.nix b/accounts/gkleen@skadhi/default.nix
index 9c3d53b9..2eb5d76c 100644
--- a/accounts/gkleen@skadhi/default.nix
+++ b/accounts/gkleen@skadhi/default.nix
@@ -63,7 +63,7 @@ in {
63 63
64 home.persistence."/persistent" = { 64 home.persistence."/persistent" = {
65 directories = [ 65 directories = [
66 "Downloads" "documents" "screenshots" "media" 66 "Downloads" "documents" "screenshots" "media" "projects"
67 ".ssh" ".local/share/direnv" 67 ".ssh" ".local/share/direnv"
68 ]; 68 ];
69 }; 69 };
diff --git a/accounts/gkleen@skadhi/ssh/default.nix b/accounts/gkleen@skadhi/ssh/default.nix
index 2a75e3e3..806b9767 100644
--- a/accounts/gkleen@skadhi/ssh/default.nix
+++ b/accounts/gkleen@skadhi/ssh/default.nix
@@ -24,6 +24,10 @@
24 ${lib.concatStringsSep " " [".host" "skadhi" "skadhi.yggdrasil" "localhost" "::1" "127.0.0.0/8"]} = { 24 ${lib.concatStringsSep " " [".host" "skadhi" "skadhi.yggdrasil" "localhost" "::1" "127.0.0.0/8"]} = {
25 identityFile = "~/.ssh/gkleen@skadhi.yggdrasil"; 25 identityFile = "~/.ssh/gkleen@skadhi.yggdrasil";
26 }; 26 };
27 "git.yggdrasil.li" = {
28 user = "gitolite";
29 identityFile = "~/.ssh/gkleen@skadhi.yggdrasil";
30 };
27 }; 31 };
28 }; 32 };
29} 33}