diff --git a/machines/configuration.nix b/machines/configuration.nix index eac25390..89be54c9 100644 --- a/machines/configuration.nix +++ b/machines/configuration.nix @@ -37,6 +37,7 @@ in ]; }; + lucia = nixosSystem { system = "aarch64-linux"; specialArgs.inputs = inputs; @@ -44,4 +45,23 @@ in ./lucia/configuration.nix ]; }; + + rpi1_base_image = nixosSystem { + system = "aarch64-linux"; + modules = [ + "${nixpkgs}/nixos/modules/installer/sd-card/sd-image-raspberrypi.nix" + ./modules/sshd.nix + { + nixpkgs.config.allowUnsupportedSystem = true; + nixpkgs.crossSystem.system = "aarch64-linux"; + + networking.hostName = "rp1_base_image"; + networking.networkmanager.enable = true; + + system.stateVersion = "22.11"; + } + ]; + }; + + }