summaryrefslogtreecommitdiff
path: root/nixos/profiles/workstation/default.nix
blob: ddc9a8c224e502f0fa3af6007495f13bc8951057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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";
  };
}