From b564a0af0b398ae68b2a0cce008f760da3be2fce Mon Sep 17 00:00:00 2001 From: iFargle Date: Wed, 14 Feb 2024 13:36:45 +0900 Subject: [PATCH] Add stylxi to all --- home-manager/common/desktops/hyprland/default.nix | 2 -- .../common/software/cli/bash.d/starship-theme.nix | 15 +++++++-------- home-manager/default.nix | 4 ++++ 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/home-manager/common/desktops/hyprland/default.nix b/home-manager/common/desktops/hyprland/default.nix index cdd47a2e..c5e43461 100644 --- a/home-manager/common/desktops/hyprland/default.nix +++ b/home-manager/common/desktops/hyprland/default.nix @@ -1,7 +1,5 @@ { pkgs, inputs, theme, lib, ... }: { imports = [ - inputs.stylix.homeManagerModules.stylix - ../../../../stylix/${theme} ./components ./assets/waybar/scripts.nix ]; diff --git a/home-manager/common/software/cli/bash.d/starship-theme.nix b/home-manager/common/software/cli/bash.d/starship-theme.nix index 6bb0b9a7..9bcfd563 100644 --- a/home-manager/common/software/cli/bash.d/starship-theme.nix +++ b/home-manager/common/software/cli/bash.d/starship-theme.nix @@ -1,12 +1,11 @@ -{ config, pkgs, lib, ... }: - +{ config, pkgs, lib, stylix, ... }: let - orangeColor = ""; - yellowColor = ""; - blueColor = ""; - whiteColor = ""; - blackColor = ""; - redColor = ""; + orangeColor = "#f0810e"; + yellowColor = "#f9b931"; + blueColor = "#446e86"; + whiteColor = "#f8f2e6"; + blackColor = "#2f312e"; + redColor = "#fb4934"; in { programs.starship.settings = { diff --git a/home-manager/default.nix b/home-manager/default.nix index 7af2ccae..5b983c7c 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -5,6 +5,10 @@ # User configs ./users/${username} + + # Theming + inputs.stylix.homeManagerModules.stylix + ../stylix/${theme} ] ++ lib.optional (builtins.isString desktop) ./common/software/gui # GUI packages ++ lib.optional (builtins.isString desktop) ./common/desktops/${desktop} # Machine-agnostic desktop configs