Add hyprpaper

This commit is contained in:
ItsDrike 2024-06-27 22:00:11 +02:00
parent 842b009f84
commit 73c7b503ad
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 49 additions and 0 deletions

View file

@ -4,6 +4,14 @@ in
{
options.myOptions.home-manager.services = {
dunst.enable = mkEnableOption "Dunst (lightweight notification daemon)";
hyprpaper = {
enable = mkEnableOption "Hyprpaper (Hyprland wallpaper daemon)";
wallpaperPath = mkOption {
type = types.path;
default = null;
description = "Path to the wallpaper of your choosing";
};
};
};
}