cfg/host/roam/default.nix
2025-05-14 03:22:38 +02:00

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";
}