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, ... }:
{
imports = [
./components/nethack.nix
./components/firefox.nix
./modules/nethack.nix
./modules/firefox.nix
];
programs = {

View File

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

View File

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