18 lines
225 B
Nix
18 lines
225 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
networking.hostName = "roam";
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
services.openssh.enable = true;
|
|
|
|
# ====== DON'T CHANGE ======
|
|
system.stateVersion = "24.11";
|
|
}
|