blob: b7ff9b1e375ecc2a67b822ab71b1f7ee7c1660be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{...}: {
imports = [
./boot
./fileSystemLayouts
./font
./hardware
#./impermanence already at flake level imported
./libvirtd
./locale
./network
#./nixpkgs already at flake level imported
./options
./polkit
./services
./sound
./tempfiles
./users # the position of this item is fully arbitrary
];
# remove all the bloat, which nixos installs by default
environment = {
defaultPackages = [];
};
}
|