diff --git a/home/adalbert.nix b/home/adalbert.nix index d2ac644..a437239 100644 --- a/home/adalbert.nix +++ b/home/adalbert.nix @@ -5,6 +5,7 @@ }: { imports = [ ./global + ./features/desktop/awesome ./features/games ./features/coding ]; diff --git a/home/features/desktop/awesome/default.nix b/home/features/desktop/awesome/default.nix new file mode 100644 index 0000000..0ce2499 --- /dev/null +++ b/home/features/desktop/awesome/default.nix @@ -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 + ]; + }; +}