21 lines
294 B
Nix
21 lines
294 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./boot
|
|
./disko
|
|
./filesystems
|
|
./hardware
|
|
./network
|
|
./services
|
|
];
|
|
|
|
system = {
|
|
nixos.tags = [
|
|
"extra-users"
|
|
"server"
|
|
];
|
|
stateVersion = "24.11";
|
|
};
|
|
|
|
deployment.targetHost = "53f:dc2d:80c9:3ca2:4b15:ef4d:38a0:c868";
|
|
}
|