diff options
Diffstat (limited to 'nixos/profiles/workstation/default.nix')
-rw-r--r-- | nixos/profiles/workstation/default.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix new file mode 100644 index 0000000..ddc9a8c --- /dev/null +++ b/nixos/profiles/workstation/default.nix @@ -0,0 +1,20 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ../common + <top/shared/basics-physical.nix> + ./graphical.nix + ./dev.nix + ./create.nix + ]; + + environment.systemPackages = with pkgs; [ + npins + ]; + + environment.sessionVariables = { + # Tell .zshrc to source zshrc-workstation.sh. + MYNIX_PROFILE = "workstation"; + }; +} |