1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

lazydocker: null package support

This commit is contained in:
Austin Horstman 2025-03-20 15:48:01 -05:00
parent 65413f297f
commit 2e9981ca0d

View file

@ -15,7 +15,7 @@ in {
enable = lib.mkEnableOption
"lazydocker, a simple terminal UI for both docker and docker compose";
package = lib.mkPackageOption pkgs "lazydocker" { };
package = lib.mkPackageOption pkgs "lazydocker" { nullable = true; };
settings = lib.mkOption {
type = yamlFormat.type;
@ -45,7 +45,7 @@ in {
};
config = lib.mkIf cfg.enable {
home.packages = [ cfg.package ];
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
home.file."Library/Application Support/jesseduffield/lazydocker/config.yml" =
lib.mkIf (cfg.settings != { } && (isDarwin && !config.xdg.enable)) {