14 lines
228 B
Nix
14 lines
228 B
Nix
{ lib', ... }:
|
|
{
|
|
networking.hostName = "roam";
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./networking.nix
|
|
./security.nix
|
|
./services.nix
|
|
];
|
|
|
|
# ====== DON'T CHANGE ======
|
|
system.stateVersion = "24.11";
|
|
}
|