21 lines
278 B
Nix
21 lines
278 B
Nix
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
./modules.nix
|
||
|
./services.nix
|
||
|
./programs.nix
|
||
|
./users.nix
|
||
|
./networking.nix
|
||
|
./fonts.nix
|
||
|
];
|
||
|
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
|
||
|
swapDevices = [
|
||
|
{
|
||
|
device = "/swap";
|
||
|
size = 8192;
|
||
|
}
|
||
|
];
|
||
|
}
|