From 5c9cce1e4a94ccd15204a8e6b837c5782b6bc6af Mon Sep 17 00:00:00 2001 From: Timo Boomers Date: Sat, 17 May 2025 13:50:45 +0200 Subject: [PATCH] added home config for rpi --- flake.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/flake.nix b/flake.nix index fd39b55..3b0aa88 100644 --- a/flake.nix +++ b/flake.nix @@ -158,6 +158,16 @@ ./hosts/v-th-ctr-01/home.nix ]; }; + + "deploy@p-th-rpi-01" = home-manager.lib.homeManagerConfiguration { + pkgs = nixpkgs.legacyPackages.x86_64-linux; + extraSpecialArgs = { inherit inputs nix-colors; }; + modules = [ + ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; }) + + ./hosts/v-th-rpi-01/home.nix + ]; + }; }; }; }