blob: 5faa402d6ab863980f0789f9a2d4db3b815c6e71 (
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
24
25
|
{lib, ...}: {
imports = [
./boot
./disks
./font
./hardware
./impermanence
./libvirtd
./locale
./network
#./nixpkgs already at flake level imported
./options
./polkit
./power
./services
./secrets
./sound
./tempfiles
./users # the position of this item is fully arbitrary
];
# remove all the bloat, which nixos installs by default
environment = {
defaultPackages = lib.mkForce [];
};
}
|