aboutsummaryrefslogtreecommitdiff
path: root/hosts/canadian-government-system/default.nix
blob: 3086ec9497f6bb2f845dc2f1cfcaec227ebf4ff9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, ... }:
{
  imports = [ ./disks.nix ];
  networking.domain = "eviltransgenders.club";
  security.doas.enable = true;
  services.openssh.enable = true;
  system.stateVersion = "26.05";
  users.users = {
    root.openssh.authorizedKeys.keys = [
      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICcEZBikGjnGveif3TsfBkWCl1Qrw0yZoOAn/LxS8oAa rosa@lust"
    ];

    rosa.enable = true;
  };
}