summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odin.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/odin.nix b/odin.nix
index 67ea2853..5405dd7d 100644
--- a/odin.nix
+++ b/odin.nix
@@ -56,7 +56,14 @@
56 monitor-uucp 56 monitor-uucp
57 ]; 57 ];
58 58
59 programs.zsh.enable = true; 59 programs.zsh = {
60 enable = true;
61 shellInit = ''
62 . ${config.system.build.setEnvironment}
63
64 ${config.environment.shellInit}
65 '';
66 };
60 67
61 services.openssh = { 68 services.openssh = {
62 enable = true; 69 enable = true;