DashNix/nix/modules/hyprpaper_config.nix

14 lines
261 B
Nix

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