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
|
let
|
||||||
inherit (lib) mkIf enabled;
|
inherit (lib) mkIf;
|
||||||
inherit (lib.marleyos) mkEnableModule;
|
inherit (lib.marleyos) mkEnableModule enabled;
|
||||||
|
|
||||||
cfg = config.marleyos.programs.cava;
|
cfg = config.marleyos.programs.cava;
|
||||||
inherit (config.marleyos.theme) colors;
|
inherit (config.marleyos.theme) colors;
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) mkIf enabled;
|
inherit (lib) mkIf;
|
||||||
inherit (lib.marleyos) mkEnableModule;
|
inherit (lib.marleyos) mkEnableModule enabled;
|
||||||
|
|
||||||
cfg = config.marleyos.programs.fzf;
|
cfg = config.marleyos.programs.fzf;
|
||||||
inherit (config.marleyos.theme) colors;
|
inherit (config.marleyos.theme) colors;
|
||||||
|
|
|
@ -6,11 +6,10 @@
|
||||||
let
|
let
|
||||||
inherit (lib)
|
inherit (lib)
|
||||||
mkIf
|
mkIf
|
||||||
enabled
|
|
||||||
mkForce
|
mkForce
|
||||||
concatStrings
|
concatStrings
|
||||||
;
|
;
|
||||||
inherit (lib.marleyos) mkEnableModule;
|
inherit (lib.marleyos) mkEnableModule enabled;
|
||||||
|
|
||||||
cfg = config.marleyos.programs.starship;
|
cfg = config.marleyos.programs.starship;
|
||||||
inherit (config.marleyos.theme) colors;
|
inherit (config.marleyos.theme) colors;
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) mkIf enabled;
|
inherit (lib) mkIf;
|
||||||
inherit (lib.marleyos) mkEnableModule;
|
inherit (lib.marleyos) mkEnableModule enabled;
|
||||||
|
|
||||||
cfg = config.marleyos.programs.zathura;
|
cfg = config.marleyos.programs.zathura;
|
||||||
inherit (config.marleyos.theme) colors;
|
inherit (config.marleyos.theme) colors;
|
||||||
|
|
|
@ -6,10 +6,9 @@
|
||||||
let
|
let
|
||||||
inherit (lib)
|
inherit (lib)
|
||||||
mkIf
|
mkIf
|
||||||
disabled
|
|
||||||
mkMerge
|
mkMerge
|
||||||
;
|
;
|
||||||
inherit (lib.marleyos) mkEnableModule;
|
inherit (lib.marleyos) mkEnableModule disabled;
|
||||||
|
|
||||||
cfg = config.marleyos.services.dunst;
|
cfg = config.marleyos.services.dunst;
|
||||||
inherit (config.marleyos.theme) colors;
|
inherit (config.marleyos.theme) colors;
|
||||||
|
|
Loading…
Reference in a new issue