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