14 lines
263 B
Nix
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.
|
|
'';
|
|
};
|
|
};
|
|
}
|