mirror of https://gitlab.crans.org/nounous/nixos
39 lines
519 B
Nix
39 lines
519 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./networking.nix
|
|
|
|
../../../modules
|
|
];
|
|
|
|
networking.hostId = "dbca3142";
|
|
networking.hostName = "thot";
|
|
|
|
boot = {
|
|
loader = {
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
zfsSupport = true;
|
|
device = "nodev";
|
|
};
|
|
};
|
|
|
|
initrd =
|
|
{
|
|
};
|
|
|
|
zfs = {
|
|
extraPools = [
|
|
"head"
|
|
"backups"
|
|
];
|
|
forceImportAll = true;
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|