From 370a8881b551dd50a982a54f3a35fa99f22152a1 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Fri, 9 Jun 2023 13:30:06 +0200 Subject: [PATCH] [nix] Fix a CRITICAL BUG with the zsh config --- nix/hosts/alymac/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/hosts/alymac/default.nix b/nix/hosts/alymac/default.nix index 773055a..0e7673d 100644 --- a/nix/hosts/alymac/default.nix +++ b/nix/hosts/alymac/default.nix @@ -6,6 +6,10 @@ # Installs a version of nix, that dosen't need "experimental-features = nix-command flakes" in /etc/nix/nix.conf # services.nix-daemon.package = pkgs.nixFlakes; + # if you use zsh (the default on new macOS installations), + # you'll need to enable this so nix-darwin creates a zshrc sourcing needed environment changes + programs.zsh.enable = true; + users.users.alyxia = { name = "alyxia"; home = "/Users/alyxia";