From 26dccaf5c6f16a4fff9de75faa5f77fa7f2b5d13 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Tue, 3 Sep 2024 21:45:13 +0200 Subject: [PATCH] style/stylix.nix: delete stylix.nix --- modules/style/stylix.nix | 86 ---------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 modules/style/stylix.nix diff --git a/modules/style/stylix.nix b/modules/style/stylix.nix deleted file mode 100644 index 11dac7f..0000000 --- a/modules/style/stylix.nix +++ /dev/null @@ -1,86 +0,0 @@ -{ - config, - inputs, - lib, - ... -}: let - cfg = config.modules.usrEnv.style.stylix; - inherit (config.modules.usrEnv.style.stylix) image cursor; - inherit (config.modules.other.system) username; - inherit (lib) mkIf; -in { - imports = [inputs.stylix.nixosModules.stylix]; - config = mkIf cfg.enable { - stylix = { - enable = false; - autoEnable = false; - homeManagerIntegration = { - followSystem = true; - autoImport = true; - }; - # base16Scheme = scheme; - base16Scheme = { - scheme = "3024-custom"; - # base00 = "090300"; # ---- - base00 = "000000"; # Black - base01 = "3a3432"; # Dark grey - base02 = "4a4543"; # Lighter grey - base03 = "5c5855"; # Light greLight grey - base04 = "807d7c"; # + - base05 = "a5a2a2"; # ++ - base06 = "d6d5d4"; # +++ - base07 = "f7f7f7"; # ++++ - base08 = "db2d20"; # red - base09 = "e8bbd0"; # orange - base0A = "fded02"; # yellow - base0B = "01a252"; # green - base0C = "b5e4f4"; # aqua - base0D = "01a0e4"; # blue - base0E = "a16a94"; # purple - base0F = "cdab53"; # brown - }; - - inherit image; - polarity = "dark"; - cursor = { - inherit (cursor) size package name; - # package = pkgs.bibata-cursors; - # name = "Bibata-Modern-Classic"; - }; - - opacity = { - applications = 1.0; - popups = 1.0; - desktop = 1.0; - terminal = 1.0; - }; - targets = { - console.enable = true; - fish.enable = true; - grub.enable = false; - grub.useImage = true; - gtk.enable = true; - lightdm.enable = true; - nixos-icons.enable = true; - plymouth.enable = true; - plymouth.logoAnimated = true; - }; - }; - home-manager.users.${username} = { - stylix.targets = { - btop.enable = true; - helix.enable = true; - dunst.enable = true; - firefox.enable = true; - foot.enable = true; - fzf.enable = true; - hyprland.enable = true; - lazygit.enable = true; - emacs.enable = true; - kde.enable = true; - yazi.enable = true; - zellij.enable = true; - }; - }; - }; -}