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