19 lines
253 B
Nix
19 lines
253 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./boot
|
|
./disko
|
|
./hardware
|
|
./services
|
|
];
|
|
|
|
system = {
|
|
nixos.tags = [
|
|
"pc"
|
|
"school"
|
|
];
|
|
stateVersion = "24.11";
|
|
};
|
|
|
|
deployment.targetHost = "4ec:1001:ca5a:ae79:40e2:cb4c:e3c9:f401";
|
|
}
|