From 66b2e02e788a792c540dd0e4c2cf3e575dd76c42 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Fri, 23 Aug 2024 08:27:09 +0200 Subject: [PATCH] style: remove stylix --- modules/options/style/stylix.nix | 47 -------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 modules/options/style/stylix.nix diff --git a/modules/options/style/stylix.nix b/modules/options/style/stylix.nix deleted file mode 100644 index ed6a023..0000000 --- a/modules/options/style/stylix.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ - config, - lib, - ... -}: let - inherit (lib) types mkEnableOption mkOption; -in { - options.modules.usrEnv.style.stylix = { - enable = mkEnableOption "Stylix style Manager"; - scheme = mkOption { - description = "Color Scheme"; - type = types.str; - }; - image = mkOption { - description = "Image"; - type = types.path; - }; - cursor = { - size = mkOption { - description = "Cursor Size"; - type = types.int; - }; - package = mkOption { - description = "Cursor Package"; - type = types.package; - }; - name = mkOption { - description = "Cursor Name"; - type = types.str; - }; - }; - fontsizes = { - terminal = mkOption { - description = "Terminal font size"; - type = types.int; - }; - popups = mkOption { - description = "Popup font size"; - type = types.int; - }; - applications = mkOption { - description = "Application font size"; - type = types.int; - }; - }; - }; -}