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