default fix
This commit is contained in:
parent
35377104df
commit
9471e48f65
1 changed files with 7 additions and 8 deletions
|
|
@ -43,12 +43,11 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
imports = [
|
||||
(lib.mkIf cfg.dailyApps.enable ./daily_apps.nix)
|
||||
(lib.mkIf cfg.niri.enable ./niri.nix)
|
||||
(lib.mkIf cfg.nvf.enable ./nvf.nix)
|
||||
(lib.mkIf cfg.shell.enable ./shell.nix)
|
||||
(lib.mkIf cfg.games.enable ./games/minecraft.nix)
|
||||
(lib.mkIf cfg.createProject.enable ./create-project/create-project.nix)
|
||||
];
|
||||
imports =
|
||||
(lib.optional cfg.dailyApps.enable ./daily_apps.nix)
|
||||
++ (lib.optional cfg.niri.enable ./niri.nix)
|
||||
++ (lib.optional cfg.nvf.enable ./nvf.nix)
|
||||
++ (lib.optional cfg.shell.enable ./shell)
|
||||
++ (lib.optional cfg.games.enable ./games/minecraft.nix)
|
||||
++ (lib.optional cfg.createProject.enable ./create-project/create-project.nix);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue