refactor(home): renamed components/ to modules/ and moved awesomerc.lua to resources/

This commit is contained in:
xezo360hye 2024-08-10 23:11:46 +03:00
parent 3e900d52ec
commit d7c2a32c30
8 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
imports = [ imports = [
./components/nethack.nix ./modules/nethack.nix
./components/firefox.nix ./modules/firefox.nix
]; ];
programs = { programs = {

View File

@ -1,6 +1,6 @@
{ {
imports = [ imports = [
./components/hyprland.nix ./modules/hyprland.nix
./components/plasma.nix ./modules/plasma.nix
]; ];
} }

View File

@ -9,6 +9,6 @@
}; };
home.file = { home.file = {
".config/awesome/rc.lua".source = ./components/awesomerc.lua; ".config/awesome/rc.lua".source = ./resources/awesomerc.lua;
}; };
} }