structural-rework #1

Merged
ghoscht merged 44 commits from structural-rework into main 2023-12-29 10:35:45 +01:00
2 changed files with 32 additions and 0 deletions
Showing only changes of commit 01f497e64c - Show all commits

View file

@ -5,6 +5,7 @@
}: {
imports = [
./global
./features/desktop/awesome
./features/games
./features/coding
];

View file

@ -0,0 +1,31 @@
{pkgs, ...}: {
home = {
file.".wallpapers" = {
source = ../../../../rsc/wallpaper;
recursive = true;
};
file.".config/awesome/" = {
source = ../../../../rsc/config/awesome;
recursive = true;
};
file.".config/picom/" = {
source = ../../../../rsc/config/picom;
recursive = true;
};
file.".config/rofi" = {
source = ../../../../rsc/config/rofi;
recursive = true;
};
packages = with pkgs; [
picom
rofi
redshift
xbindkeys
clipmenu
flameshot
xclip
brightnessctl
];
};
}