mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
vicinae: fix settings example
This commit is contained in:
committed by
Robert Helgesson
parent
3b3164dfe3
commit
99a037de18
@@ -133,27 +133,22 @@ in
|
||||
settings = lib.mkOption {
|
||||
inherit (jsonFormat) type;
|
||||
default = { };
|
||||
description = "Settings written as JSON to `~/.config/vicinae/settings.json.";
|
||||
example = lib.literalExpression ''
|
||||
{
|
||||
faviconService = "twenty";
|
||||
font = {
|
||||
size = 10;
|
||||
};
|
||||
popToRootOnClose = false;
|
||||
rootSearch = {
|
||||
searchFiles = false;
|
||||
};
|
||||
favicon_service = "twenty";
|
||||
font.normal.size = 10;
|
||||
pop_to_root_on_close=false;
|
||||
search_files_in_root= false;
|
||||
theme = {
|
||||
name = "vicinae-dark";
|
||||
};
|
||||
window = {
|
||||
csd = true;
|
||||
opacity = 0.95;
|
||||
rounding = 10;
|
||||
dark.name = "vicinae-dark";
|
||||
light.name = "vicinae-light";
|
||||
};
|
||||
}
|
||||
'';
|
||||
description = ''
|
||||
Settings written as JSON to {file}`~/.config/vicinae/settings.json`.
|
||||
See {command}`vicinae config default`.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user