diff options
Diffstat (limited to 'machines')
| -rw-r--r-- | machines/lemptop.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/machines/lemptop.nix b/machines/lemptop.nix index 5c9b5e0..fb05a3d 100644 --- a/machines/lemptop.nix +++ b/machines/lemptop.nix @@ -1,5 +1,5 @@ { config, lib, pkgs, modulesPath, ... }: - +with lib; { imports = [ (modulesPath + "/installer/scan/not-detected.nix") @@ -30,6 +30,12 @@ -----END CERTIFICATE----- ''; }; + users.users.${ivi.username} = { + shell = pkgs.zsh; + }; + environment.shells = [pkgs.bashInteractive pkgs.zsh]; + environment.pathsToLink = [ "/share/zsh" ]; + programs.zsh.enable = true; documentation.dev.enable = true; networking.hostName = "lemptop"; |
