From b260743b9eeece2fa55c4ab5915ad4a1d4f2f53e Mon Sep 17 00:00:00 2001 From: Timo Boomers Date: Tue, 20 May 2025 16:41:58 +0200 Subject: [PATCH] updated nix flake --- flake.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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 + ]; + }; }; }; }