mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
treewide: null package support (#6582)
Can generate the config without installing application through home-manager. Helpful when a package is broken (or not provided) on a specific platform through nixpkgs and needs to be installed through other means but you still can benefit from the declarative configuration.
This commit is contained in:
parent
6c2b79403e
commit
d2c014e1c7
83 changed files with 269 additions and 222 deletions
|
|
@ -130,7 +130,7 @@ in {
|
|||
'';
|
||||
};
|
||||
|
||||
package = mkPackageOption pkgs "i3status" { };
|
||||
package = mkPackageOption pkgs "i3status" { nullable = true; };
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
|
@ -190,7 +190,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
home.packages = [ cfg.package ];
|
||||
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
||||
|
||||
xdg.configFile."i3status/config".text = concatStringsSep "\n" ([ ]
|
||||
++ optional (cfg.general != { }) (formatModule "general" cfg.general)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue