DashNix/nix/modules/hyprpaper_config.nix
2024-04-18 21:10:51 +02:00

14 lines
263 B
Nix

{ lib, ... }: {
options.programs.hyprland = {
hyprpaper = lib.mkOption {
default = '''';
example = ''
hyprpaper stuff
'';
type = lib.types.lines;
description = ''
Extra settings for foo.
'';
};
};
}