fix(home): Import enabled from correct lib
This commit is contained in:
parent
acc2be8b82
commit
7db00936a0
5 changed files with 8 additions and 10 deletions
|
@ -4,8 +4,8 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkIf enabled;
|
||||
inherit (lib.marleyos) mkEnableModule;
|
||||
inherit (lib) mkIf;
|
||||
inherit (lib.marleyos) mkEnableModule enabled;
|
||||
|
||||
cfg = config.marleyos.programs.cava;
|
||||
inherit (config.marleyos.theme) colors;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkIf enabled;
|
||||
inherit (lib.marleyos) mkEnableModule;
|
||||
inherit (lib) mkIf;
|
||||
inherit (lib.marleyos) mkEnableModule enabled;
|
||||
|
||||
cfg = config.marleyos.programs.fzf;
|
||||
inherit (config.marleyos.theme) colors;
|
||||
|
|
|
@ -6,11 +6,10 @@
|
|||
let
|
||||
inherit (lib)
|
||||
mkIf
|
||||
enabled
|
||||
mkForce
|
||||
concatStrings
|
||||
;
|
||||
inherit (lib.marleyos) mkEnableModule;
|
||||
inherit (lib.marleyos) mkEnableModule enabled;
|
||||
|
||||
cfg = config.marleyos.programs.starship;
|
||||
inherit (config.marleyos.theme) colors;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkIf enabled;
|
||||
inherit (lib.marleyos) mkEnableModule;
|
||||
inherit (lib) mkIf;
|
||||
inherit (lib.marleyos) mkEnableModule enabled;
|
||||
|
||||
cfg = config.marleyos.programs.zathura;
|
||||
inherit (config.marleyos.theme) colors;
|
||||
|
|
|
@ -6,10 +6,9 @@
|
|||
let
|
||||
inherit (lib)
|
||||
mkIf
|
||||
disabled
|
||||
mkMerge
|
||||
;
|
||||
inherit (lib.marleyos) mkEnableModule;
|
||||
inherit (lib.marleyos) mkEnableModule disabled;
|
||||
|
||||
cfg = config.marleyos.services.dunst;
|
||||
inherit (config.marleyos.theme) colors;
|
||||
|
|
Loading…
Reference in a new issue