diff --git a/nixos/default.nix b/nixos/default.nix index 798b64aa0ecb..0a1f8c31bfe0 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -34,9 +34,7 @@ let home.homeDirectory = config.users.users.${name}.home; }; }) - ({...}: { - imports = cfg.sharedModules; - }) + ({ ... }: { imports = cfg.sharedModules; }) ]; }; @@ -70,7 +68,7 @@ in { sharedModules = mkOption { type = types.listOf types.path; - default = []; + default = [ ]; example = [ /path/to/module.nix ]; description = '' Shared home-manager modules among all users