Skip to content

Commit

Permalink
feat(pops/haumea): do not mkPath with config {...}
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Nov 26, 2023
1 parent 97d6c67 commit 2459524
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions src/haumea/nixosModules.nix
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,15 @@ let
path: module: fun:
({
config =
if module ? config then
fun module.config
else
fun (
removeAttrs module [
"options"
"imports"
]
)
;
# if module ? config then
# fun module.config
# else
fun (
removeAttrs module [
"options"
"imports"
]
);
imports = module.imports or [ ];
})
// {
Expand Down

0 comments on commit 2459524

Please sign in to comment.