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