diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/canadian-government-system/default.nix | 8 | ||||
| -rw-r--r-- | hosts/canadian-government-system/hardware-configuration.nix | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/hosts/canadian-government-system/default.nix b/hosts/canadian-government-system/default.nix index 4eb8bd6..3086ec9 100644 --- a/hosts/canadian-government-system/default.nix +++ b/hosts/canadian-government-system/default.nix @@ -5,5 +5,11 @@ security.doas.enable = true; services.openssh.enable = true; system.stateVersion = "26.05"; - users.users.rosa.enable = true; + users.users = { + root.openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICcEZBikGjnGveif3TsfBkWCl1Qrw0yZoOAn/LxS8oAa rosa@lust" + ]; + + rosa.enable = true; + }; } diff --git a/hosts/canadian-government-system/hardware-configuration.nix b/hosts/canadian-government-system/hardware-configuration.nix index de63775..88db163 100644 --- a/hosts/canadian-government-system/hardware-configuration.nix +++ b/hosts/canadian-government-system/hardware-configuration.nix @@ -1,4 +1,10 @@ -{ config, lib, modulesPath, pkgs, ... }: +{ + config, + lib, + modulesPath, + pkgs, + ... +}: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ |
