about summary refs log tree commit diff stats
path: root/system/default.nix
blob: 3609dcd452b70b870edccf299b1351f5df4fdb17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{...}: {
  imports = [
    ./boot
    ./fileSystemLayouts
    ./font
    ./impermanence
    ./locale
    ./sound
    ./users # the position of this item is fully arbitrary
    ./polkit
    ./graphics
    ./services
    ./tempfiles
  ];
  # remove all bloat, nixos installs by default
  environment = {
    defaultPackages = [];
  };
}