From d7c2a32c30da512e46293777b8be7334a0e7320e Mon Sep 17 00:00:00 2001 From: xezo360hye Date: Sat, 10 Aug 2024 23:11:46 +0300 Subject: [PATCH] refactor(home): renamed components/ to modules/ and moved awesomerc.lua to resources/ --- home/common.nix | 4 ++-- home/maidena.nix | 4 ++-- home/{components => modules}/firefox.nix | 0 home/{components => modules}/hyprland.nix | 0 home/{components => modules}/nethack.nix | 0 home/{components => modules}/plasma.nix | 0 home/{components => resources}/awesomerc.lua | 0 home/tokishiko.nix | 2 +- 8 files changed, 5 insertions(+), 5 deletions(-) rename home/{components => modules}/firefox.nix (100%) rename home/{components => modules}/hyprland.nix (100%) rename home/{components => modules}/nethack.nix (100%) rename home/{components => modules}/plasma.nix (100%) rename home/{components => resources}/awesomerc.lua (100%) 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; }; }