diff options
Diffstat (limited to 'nixos/parts/dev.nix')
-rw-r--r-- | nixos/parts/dev.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/parts/dev.nix b/nixos/parts/dev.nix index e2ac1f6..aca8e78 100644 --- a/nixos/parts/dev.nix +++ b/nixos/parts/dev.nix @@ -1,6 +1,11 @@ { config, pkgs, ... }: { + environment.sessionVariables = { + # Tell .zshrc to source zshrc-dev.sh. + MYNIX_DEV = "true"; + }; + environment.systemPackages = with pkgs; [ rustup python313 |