Add awesomewm configuration
This commit is contained in:
parent
de179d7332
commit
01f497e64c
2 changed files with 32 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./global
|
./global
|
||||||
|
./features/desktop/awesome
|
||||||
./features/games
|
./features/games
|
||||||
./features/coding
|
./features/coding
|
||||||
];
|
];
|
||||||
|
|
31
home/features/desktop/awesome/default.nix
Normal file
31
home/features/desktop/awesome/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue