diff options
| author | Mike Vink <mike@pionative.com> | 2024-03-08 22:35:52 +0100 |
|---|---|---|
| committer | Mike Vink <mike@pionative.com> | 2024-03-08 22:35:52 +0100 |
| commit | 1655468b949829a7bf6fe1a79a60a636e407c5ca (patch) | |
| tree | fdcd6df433c43e2d5b3181838e2becf942cb0c3e /machines | |
| parent | 4b8d71a669112b6e6b4d91381a0e0afaf08cfc9b (diff) | |
make it somewhat make sense
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"; |
