diff --git a/home/common.nix b/home/common.nix index 550de47..f150382 100644 --- a/home/common.nix +++ b/home/common.nix @@ -1,8 +1,8 @@ { pkgs, ... }: { imports = [ - ./components/nethack.nix - ./components/firefox.nix + ./modules/nethack.nix + ./modules/firefox.nix ]; programs = { diff --git a/home/maidena.nix b/home/maidena.nix index ec1adfe..ee057a4 100644 --- a/home/maidena.nix +++ b/home/maidena.nix @@ -1,6 +1,6 @@ { imports = [ - ./components/hyprland.nix - ./components/plasma.nix + ./modules/hyprland.nix + ./modules/plasma.nix ]; } diff --git a/home/components/firefox.nix b/home/modules/firefox.nix similarity index 100% rename from home/components/firefox.nix rename to home/modules/firefox.nix diff --git a/home/components/hyprland.nix b/home/modules/hyprland.nix similarity index 100% rename from home/components/hyprland.nix rename to home/modules/hyprland.nix diff --git a/home/components/nethack.nix b/home/modules/nethack.nix similarity index 100% rename from home/components/nethack.nix rename to home/modules/nethack.nix diff --git a/home/components/plasma.nix b/home/modules/plasma.nix similarity index 100% rename from home/components/plasma.nix rename to home/modules/plasma.nix diff --git a/home/components/awesomerc.lua b/home/resources/awesomerc.lua similarity index 100% rename from home/components/awesomerc.lua rename to home/resources/awesomerc.lua diff --git a/home/tokishiko.nix b/home/tokishiko.nix index 304e7c6..875d6a6 100644 --- a/home/tokishiko.nix +++ b/home/tokishiko.nix @@ -9,6 +9,6 @@ }; home.file = { - ".config/awesome/rc.lua".source = ./components/awesomerc.lua; + ".config/awesome/rc.lua".source = ./resources/awesomerc.lua; }; }