added stuff
This commit is contained in:
parent
937f28770d
commit
236b8c2a6b
907 changed files with 70990 additions and 0 deletions
44
nyx/modules/options/theme/default.nix
Normal file
44
nyx/modules/options/theme/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkOption mkEnableOption types;
|
||||
in {
|
||||
imports = [
|
||||
./gtk.nix
|
||||
./qt.nix
|
||||
./colors.nix
|
||||
];
|
||||
|
||||
options.modules.style = {
|
||||
forceGtk = mkEnableOption "Force GTK applications to use the GTK theme";
|
||||
useKvantum = mkEnableOption "Use Kvantum to theme QT applications";
|
||||
|
||||
pointerCursor = {
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
description = "The package providing the cursors";
|
||||
default = pkgs.catppuccin-cursors.mochaDark;
|
||||
};
|
||||
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
description = "The name of the cursor inside the package";
|
||||
default = "Catppuccin-Mocha-Dark-Cursors";
|
||||
};
|
||||
|
||||
size = mkOption {
|
||||
type = types.int;
|
||||
description = "The size of the cursor";
|
||||
default = 24;
|
||||
};
|
||||
};
|
||||
|
||||
wallpapers = mkOption {
|
||||
type = with types; either str (listOf str);
|
||||
description = "Wallpaper or wallpapers to use";
|
||||
default = [];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue