diff --git a/hosts/raptus/configuration.nix b/hosts/raptus/configuration.nix index 63e3123..76bb0b3 100644 --- a/hosts/raptus/configuration.nix +++ b/hosts/raptus/configuration.nix @@ -3,14 +3,9 @@ lib, pkgs, config, + pubkeys, ... }: -let - sshAccess = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvPqWPXEUOSMGMIRmirQfbrzq//NkPlEI2TmFpIkSfw" # brontes - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGwlScEmVbdc0EH93XLX+K8yP5FKUKzMf/bWTSO+rMiO" # marr - ]; -in { imports = [ (modulesPath + "/profiles/qemu-guest.nix") @@ -96,7 +91,7 @@ in pkgs.gitMinimal ]; - users.users.root.openssh.authorizedKeys.keys = sshAccess; + users.users.root.openssh.authorizedKeys.keys = [ pubkeys.ny ]; system.stateVersion = "24.11"; } diff --git a/hosts/shan/configuration.nix b/hosts/shan/configuration.nix index a44bd37..ba2a750 100644 --- a/hosts/shan/configuration.nix +++ b/hosts/shan/configuration.nix @@ -2,12 +2,9 @@ modulesPath, lib, pkgs, - self, + pubkeys, ... }: -let - pubKeys = (import "${self}/options/keys.nix").allUser; -in { imports = [ (modulesPath + "/profiles/qemu-guest.nix") @@ -21,7 +18,7 @@ in }; modules.server.navidrome = { - enable = false; + enable = true; library = { path = "/mnt/music"; type = "nfs"; @@ -30,7 +27,10 @@ in path = "/mnt/Fort/data/music"; }; }; - settings = { }; + settings = { + Address = "127.0.0.1"; + Port = 4533; + }; }; services.openssh.enable = true; @@ -39,15 +39,7 @@ in pkgs.curl ]; - users.users.root.openssh.authorizedKeys.keys = pubKeys; - - virtualisation.docker = { - enableOnBoot = true; - rootless = { - enable = true; - setSocketVariable = true; - }; - }; + users.users.root.openssh.authorizedKeys.keys = [ pubkeys.ny ]; system.stateVersion = "23.11"; } diff --git a/modules/nix/overlays.nix b/modules/nix/overlays.nix index 7dba016..c192864 100644 --- a/modules/nix/overlays.nix +++ b/modules/nix/overlays.nix @@ -27,7 +27,7 @@ pkgs = prev.pkgs; }; - rofi-obsidian = inputs'.rofi-obsidian.outputs.packages.rofi-obsidian; + rofi-obsidian = inputs'.rofi-obsidian.packages.rofi-obsidian; nysh = inputs'.nysh.packages.nysh; diff --git a/options/keys.nix b/options/keys.nix index 5ba53a3..f2ec915 100644 --- a/options/keys.nix +++ b/options/keys.nix @@ -1,10 +1,30 @@ -rec { - brontesUser = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvPqWPXEUOSMGMIRmirQfbrzq//NkPlEI2TmFpIkSfw" - ]; - marrUser = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGwlScEmVbdc0EH93XLX+K8yP5FKUKzMf/bWTSO+rMiO" ]; +{ lib, ... }: +let + inherit (lib) foldl' attrValues; + take = machines: map (m: systems.${m}) machines; - allUser = brontesUser ++ marrUser; + users = { + ny = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvPqWPXEUOSMGMIRmirQfbrzq//NkPlEI2TmFpIkSfw"; + }; + systems = { + brontes = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICgknH3OPazZNhH5xkYfXBcYpI3TXj/eRp0/zzjtVJBf"; + marr = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILMh2nUUKt3xsKiwZUuo6HgvR3lr7rRAl0SOH/502sFP"; + raptus = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKdpjGR/pV1roktZdKIVVWqds0JB+x1ksfyQmYPMLK7o"; + shan = ""; + }; - all = allUser; + workstations = take "brontes" "marr"; + server = take "raptus" "shane"; + + all = foldl' (a: b: a ++ [ b ]) [ users.ny ] (attrValues systems); +in +{ + inherit all workstations server; + inherit (users) ny; + inherit (users) + raptus + brontes + marr + shan + ; } diff --git a/parts/lib/functions.nix b/parts/lib/functions.nix index ad1504f..2d8984a 100644 --- a/parts/lib/functions.nix +++ b/parts/lib/functions.nix @@ -35,6 +35,7 @@ specialArgs = { inherit inputs inputs'; inherit self self'; + pubkeys = import ../../options/keys.nix { inherit lib; }; username = "ny"; }; }