22 lines
307 B
Nix
22 lines
307 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./disko
|
||
|
./hardware
|
||
|
./users
|
||
|
../../modules/system
|
||
|
];
|
||
|
|
||
|
networking = {
|
||
|
hostName = "rubble";
|
||
|
hostId = "3d16423a";
|
||
|
};
|
||
|
|
||
|
system = {
|
||
|
desktop.enable = true;
|
||
|
extlinux.enable = true;
|
||
|
wireguard.client.enable = true;
|
||
|
stateVersion = "24.11";
|
||
|
};
|
||
|
}
|