home: coloscheme module -> hozen arg

This commit is contained in:
ooks-io 2024-11-18 17:47:27 +11:00
parent edc99e84ef
commit ecbb5c8700
13 changed files with 263 additions and 237 deletions

View file

@ -1,13 +1,13 @@
{
config,
osConfig,
hozen,
lib,
pkgs,
...
}: let
inherit (lib) mkIf elem;
inherit (osConfig.ooknet.appearance) colorscheme fonts;
inherit (colorscheme) palette;
inherit (hozen) color;
inherit (osConfig.ooknet.appearance) fonts;
inherit (osConfig.ooknet.workstation) profiles;
vesktopMime = {"x-scheme-handler/discord" = ["vesktop.desktop"];};
@ -18,6 +18,7 @@ in {
(pkgs.vesktop.overrideAttrs (old: {
patches = (old.patches or []) ++ [./vesktop-patch.patch];
}))
pkgs.equibop
];
xdg.configFile."vesktop/themes/nix.css".text =
@ -32,17 +33,17 @@ in {
*/
:root {
--nix-bg1: #${palette.base00};
--nix-bg2: #${palette.base01};
--nix-bg3: #${palette.base02};
--nix-bg1: #${color.base00};
--nix-bg2: #${color.base01};
--nix-bg3: #${color.base02};
--nix-fg1: #${palette.base05};
--nix-fg2: #${palette.base07};
--nix-fg3: #${palette.base03};
--nix-link: #${palette.base0D};
--nix-fg1: #${color.base05};
--nix-fg2: #${color.base07};
--nix-fg3: #${color.base03};
--nix-link: #${color.base0D};
--nix-accent: #${palette.base08};
--nix-hi: #${palette.base0B};
--nix-accent: #${color.base08};
--nix-hi: #${color.base0B};
--font-mono: ${fonts.monospace.family}, monospace;
--font-regular: ${fonts.regular.family}, sans serif;