summaryrefslogtreecommitdiff
path: root/hosts/cloud/configuration.nix
blob: 9eddac5d36ff96ed4423e14fc1e5a1e667b78ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ ... }: {
  imports = [
    ./hardware-configuration.nix
    ./networking.nix
  ];

  boot.tmp.cleanOnBoot = true;
  zramSwap.enable = true;
  networking.hostName = "cloud";
  networking.domain = "oxapentane.com";
  services.openssh.enable = true;
  users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9iYG5oHBq/poBn7Jf1/FGWWbAnbx+NKjs7qtT3uAK'' ];
  system.stateVersion = "24.11";
}