nix-config/home/features/desktop/awesome/default.nix

36 lines
639 B
Nix
Raw Normal View History

2023-12-26 22:32:45 +01:00
{pkgs, ...}: {
2023-12-26 23:25:22 +01:00
imports = [
../common
];
2023-12-26 22:32:45 +01:00
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
];
};
}