mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-06 16:57:03 +00:00
eww: fix confDir config using missing attribute "types.isNull"
This commit is contained in:
parent
83bd3a26ac
commit
f8729b11ee
1 changed files with 1 additions and 2 deletions
|
@ -45,8 +45,7 @@ in {
|
|||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ cfg.package ];
|
||||
xdg.configFile."eww".source =
|
||||
mkIf (!types.isNull cfg.configDir) cfg.configDir;
|
||||
xdg.configFile."eww".source = mkIf (cfg.configDir != null) cfg.configDir;
|
||||
|
||||
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
||||
if [[ $TERM != "dumb" ]]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue