diff --git a/configuration.nix b/configuration.nix index be2edd6..c6e6eea 100644 --- a/configuration.nix +++ b/configuration.nix @@ -7,7 +7,7 @@ { imports = [ inputs.home-manager.nixosModules.default - ./modules/dwm.nix + ./modules ]; # Bootloader. diff --git a/modules/default.nix b/modules/default.nix new file mode 100644 index 0000000..070b242 --- /dev/null +++ b/modules/default.nix @@ -0,0 +1,7 @@ +{ ... }: + +{ + imports = [ + ./dwm.nix + ]; +}