nix-config/hosts/cloud/configuration.nix

18 lines
429 B
Nix
Raw Permalink Normal View History

2025-01-11 03:55:19 +01:00
{ ... }:
{
2025-01-02 18:23:46 +00:00
imports = [
./hardware-configuration.nix
2025-01-04 21:07:54 +00:00
./networking.nix
2025-01-02 18:23:46 +00:00
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "cloud";
networking.domain = "oxapentane.com";
services.openssh.enable = true;
2025-01-11 03:55:19 +01:00
users.users.root.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9iYG5oHBq/poBn7Jf1/FGWWbAnbx+NKjs7qtT3uAK''
];
2025-01-02 18:45:55 +00:00
system.stateVersion = "24.11";
2025-01-02 18:23:46 +00:00
}