summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorMike Vink <mike@pionative.com>2024-03-08 22:35:52 +0100
committerMike Vink <mike@pionative.com>2024-03-08 22:35:52 +0100
commit1655468b949829a7bf6fe1a79a60a636e407c5ca (patch)
treefdcd6df433c43e2d5b3181838e2becf942cb0c3e /machines
parent4b8d71a669112b6e6b4d91381a0e0afaf08cfc9b (diff)
make it somewhat make sense
Diffstat (limited to 'machines')
-rw-r--r--machines/lemptop.nix8
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";