From 5b5cb12f3e24d355fb65a66d0d362aad10bbd9a9 Mon Sep 17 00:00:00 2001 From: Tyler Kelley Date: Sun, 14 Jan 2024 01:54:57 -0600 Subject: [PATCH] Start Using Nix colors --- config/kitty.nix | 2 +- flake.nix | 2 +- home.nix | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/kitty.nix b/config/kitty.nix index 073eb74..8d9ed8c 100644 --- a/config/kitty.nix +++ b/config/kitty.nix @@ -15,7 +15,7 @@ background_opacity = "0.85"; }; extraConfig = '' - foreground ${config.colorScheme.colors.base15} + foreground ${config.colorScheme.colors.base0F} background ${config.colorScheme.colors.base00} color0 ${config.colorScheme.colors.base00} color8 ${config.colorScheme.colors.base00} diff --git a/flake.nix b/flake.nix index a32ac87..589d821 100644 --- a/flake.nix +++ b/flake.nix @@ -50,7 +50,7 @@ modules = [ ./workstation/configuration.nix home-manager.nixosModules.home-manager { home-manager.extraSpecialArgs = { inherit username; - inherit gitUsername; inherit gitEmail; + inherit gitUsername; inherit gitEmail; inherit inputs; }; home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; diff --git a/home.nix b/home.nix index 501311a..32333fb 100644 --- a/home.nix +++ b/home.nix @@ -10,6 +10,7 @@ colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium; imports = [ + inputs.nix-colors.homeManagerModules.default ./config/waybar.nix ./config/kitty.nix ];