refactored
This commit is contained in:
parent
38eda7fdd6
commit
72ea5ade11
9 changed files with 208 additions and 279 deletions
25
hosts/modules/settings.nix
Normal file
25
hosts/modules/settings.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{lib, ...}:
|
||||
with lib; {
|
||||
options.theme = {
|
||||
cursorName = mkOption {
|
||||
type = types.str;
|
||||
default = "Hu-Tao-Animated-Cursor";
|
||||
};
|
||||
cursorSize = mkOption {
|
||||
type = types.int;
|
||||
default = 24;
|
||||
};
|
||||
gtkTheme = mkOption {
|
||||
type = types.str;
|
||||
default = "Tokyonight-Dark";
|
||||
};
|
||||
iconTheme = mkOption {
|
||||
type = types.str;
|
||||
default = "candy-icons";
|
||||
};
|
||||
fontName = mkOption {
|
||||
type = types.str;
|
||||
default = "Clear Sans 10";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue