Deployment and lifecycle management for Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

flake: fix bug in home manager sower jobs generation

+3 -1
+3 -1
nix/flake/sower.nix
··· 43 43 sowerLib.prefixFlakeSystemOutputs "devshells" (self.devShells or { }) 44 44 )) 45 45 (lib.mkIf cfg.nixos.enable (sowerLib.genNixosPackages (self.nixosConfigurations or { }))) 46 - (lib.mkIf cfg.home-manager.enable (sowerLib.genNixosPackages (self.homeConfigurations or { }))) 46 + (lib.mkIf cfg.home-manager.enable ( 47 + sowerLib.genHomeManagerPackages (self.homeConfigurations or { }) 48 + )) 47 49 (lib.mkIf cfg.packages.enable (sowerLib.prefixFlakeSystemOutputs "packages" (self.packages or { }))) 48 50 ]; 49 51 };