summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorMike Vink <mike@pionative.com>2024-02-25 11:08:54 +0100
committerMike Vink <mike@pionative.com>2024-02-25 11:08:54 +0100
commit1a45bc736bead8086eed5f3cf140102e8953e7e3 (patch)
treef0b0f549d377b2fa7b608cdce8d0a7dea9e95f30 /machines
parent459ed2af20335c25fe02abf25d33d9d43634f44a (diff)
remote
Diffstat (limited to 'machines')
-rw-r--r--machines/work.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/machines/work.nix b/machines/work.nix
index 231028a..bf9c4e0 100644
--- a/machines/work.nix
+++ b/machines/work.nix
@@ -38,6 +38,8 @@
pkgs.python311
pkgs.mpv
pkgs.kubelogin
+ pkgs.zsh
+ pkgs.bashInteractive
];
hm.home.sessionPath = [
"/opt/homebrew/bin"
@@ -129,8 +131,10 @@
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
users.users.${ivi.username} = {
- shell = pkgs.bashInteractive;
+ shell = pkgs.zsh;
};
- environment.shells = [pkgs.bashInteractive];
+ environment.shells = [pkgs.bashInteractive pkgs.zsh];
+ environment.pathsToLink = [ "/share/zsh" ];
+ programs.zsh.enable = true;
};
}