fix(home): Import enabled from correct lib

This commit is contained in:
punkfairie 2024-11-16 22:46:27 -08:00
parent acc2be8b82
commit 7db00936a0
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
5 changed files with 8 additions and 10 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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;

View file

@ -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;

View file

@ -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;