diff --git a/hosts/styrak/configuration.nix b/hosts/shan/configuration.nix similarity index 53% rename from hosts/styrak/configuration.nix rename to hosts/shan/configuration.nix index 51508f8..4dcf251 100644 --- a/hosts/styrak/configuration.nix +++ b/hosts/shan/configuration.nix @@ -2,32 +2,30 @@ modulesPath, lib, pkgs, + self, ... }: +let + pubKeys = (import "${self}/options/keys.nix").allUser; +in { imports = [ - (modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/profiles/qemu-guest.nix") ./disk-config.nix ../../modules/nix ]; boot.loader.grub = { - # no need to set devices, disko will add all devices that have a EF02 partition to the list already - # devices = [ ]; efiSupport = true; efiInstallAsRemovable = true; }; + services.openssh.enable = true; environment.systemPackages = map lib.lowPrio [ pkgs.curl - pkgs.gitMinimal ]; - users.users.root.openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvPqWPXEUOSMGMIRmirQfbrzq//NkPlEI2TmFpIkSfw" # brontes - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGwlScEmVbdc0EH93XLX+K8yP5FKUKzMf/bWTSO+rMiO" # marr - ]; + users.users.root.openssh.authorizedKeys.keys = pubKeys; virtualisation.docker = { enableOnBoot = true; diff --git a/hosts/styrak/disk-config.nix b/hosts/shan/disk-config.nix similarity index 100% rename from hosts/styrak/disk-config.nix rename to hosts/shan/disk-config.nix