diff --git a/flake.nix b/flake.nix index f7eb8a9..78dcf7d 100644 --- a/flake.nix +++ b/flake.nix @@ -91,6 +91,14 @@ ./hosts/v-th-ctr-01/configuration.nix ]; }; + + # Raspberry pi + p-th-rpi-01 = nixpkgs.lib.nixosSystem { + specialArgs = { inherit inputs outputs; }; + modules = [ + ./hosts/p-th-rpi-01/configuration.nix + ]; + }; }; homeConfigurations = { @@ -136,6 +144,15 @@ ./hosts/v-th-ctr-01/home.nix ]; }; + + # Deploy + "deploy@p-th-rpi-01" = home-manager.lib.homeManagerConfiguration { + pkgs = nixpkgs.legacyPackages.x86_64-linux; + extraSpecialArgs = { inherit inputs outputs; }; + modules = [ + ./hosts/p-th-rpi-01/home.nix + ]; + }; }; }; }