45 lines
681 B
Nix
45 lines
681 B
Nix
![]() |
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./boot.nix
|
||
|
./disks.nix
|
||
|
./container.nix
|
||
|
./persistence.nix
|
||
|
./hardware
|
||
|
./swap.nix
|
||
|
./locale.nix
|
||
|
./network.nix
|
||
|
./update.nix
|
||
|
./virtualization.nix
|
||
|
];
|
||
|
|
||
|
time.timeZone = "Europe/Berlin";
|
||
|
environment.variables.EDITOR = "vim";
|
||
|
|
||
|
documentation = {
|
||
|
enable = true;
|
||
|
nixos.enable = false;
|
||
|
man.enable = true;
|
||
|
info.enable = false;
|
||
|
doc.enable = false;
|
||
|
dev.enable = false;
|
||
|
};
|
||
|
|
||
|
nix = {
|
||
|
settings = {
|
||
|
experimental-features = [
|
||
|
"nix-command"
|
||
|
"flakes"
|
||
|
];
|
||
|
max-jobs = 2;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nixpkgs.config = {
|
||
|
allowUnfree = true;
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "25.05";
|
||
|
}
|