added zsh

This commit is contained in:
John Lancaster
2025-04-03 23:56:48 -05:00
parent 2e8306c281
commit 1c9f2b54df
2 changed files with 27 additions and 2 deletions

View File

@@ -18,10 +18,12 @@
home.stateVersion = systemSettings.stateVersion;
home.homeDirectory = lib.mkForce "${userSettings.adHome}";
systemd.user.startServices = "sd-switch"; # helps with handling systemd services when switching
imports = [ (import ./git.nix {inherit userSettings;}) ];
imports = [
(import ./git.nix {inherit userSettings;})
(import ./zsh.nix {inherit userSettings;})
];
programs = {
ssh.enable = true;
bash.enable = true;
};
};
};