23 lines
338 B
Nix
23 lines
338 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./boot
|
|
./disko
|
|
./filesystems
|
|
./hardware
|
|
];
|
|
|
|
system = {
|
|
nixos.tags = [
|
|
"extra-users"
|
|
"server"
|
|
];
|
|
stateVersion = "24.11";
|
|
};
|
|
|
|
deployment.targetHost = "53f:dc2d:80c9:3ca2:4b15:ef4d:38a0:c868";
|
|
|
|
networking.hostId = "8745e22e";
|
|
|
|
services.nfs.server.enable = true;
|
|
}
|