about summary refs log tree commit diff stats
path: root/system/default.nix
blob: 1c8d090001d75b93e45260a7d03ad9306e3d17e1 (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 already at flake level imported
    ./locale
    ./sound
    ./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 = [];
  };
}