From 00987199988108ca925d288326fcf2eb84c501e2 Mon Sep 17 00:00:00 2001 From: albert Date: Sun, 18 Feb 2024 20:43:50 +0900 Subject: [PATCH] Test --- home-manager/common/software/cli/starship.nix | 6 +++--- stylix/green/default.nix | 6 +++--- stylix/stylix/default.nix | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/home-manager/common/software/cli/starship.nix b/home-manager/common/software/cli/starship.nix index 5c9a4383..442faebf 100644 --- a/home-manager/common/software/cli/starship.nix +++ b/home-manager/common/software/cli/starship.nix @@ -6,7 +6,7 @@ let errorColor = "#${config.lib.stylix.colors.base04}"; fgColor = "#${config.lib.stylix.colors.base02}"; blackColor = "#${config.lib.stylix.colors.base00}"; - whiteColor = "#${config.lib.stylix.colors.base07}"; + whiteColor = "#${config.lib.stylix.colors.base06}"; in { programs.starship = { @@ -40,7 +40,7 @@ in hostname = { ssh_only = true; - style = "fg:${fgColor} bg:${usernameColor}"; + style = "fg:${whiteColor} bg:${usernameColor}"; format = "[@$hostname]($style)"; disabled = false; }; @@ -84,7 +84,7 @@ in status = { style = "fg:${fgColor} bg:${errorColor}"; - format = "[$status ]($style)"; + format = "[ $status]($style)"; disabled = false; }; diff --git a/stylix/green/default.nix b/stylix/green/default.nix index b01cd329..4db3b6a8 100644 --- a/stylix/green/default.nix +++ b/stylix/green/default.nix @@ -1,9 +1,9 @@ -{lib, inputs, pkgs, gpu, system, theme, ...}: { - # Themes https://github.com/tinted-theming/base16-schemes +{ ... }: { + # Themes https://github.com/tinted-theming/base16-schemes stylix = { image = /etc/nixos/git/docs/icons/nixos/white.png; polarity = "dark"; base16Scheme = ./everforest-dark-hard.yaml; autoEnable = true; }; -} \ No newline at end of file +} diff --git a/stylix/stylix/default.nix b/stylix/stylix/default.nix index 1eb9fbf1..de977e00 100644 --- a/stylix/stylix/default.nix +++ b/stylix/stylix/default.nix @@ -1,10 +1,10 @@ -{pkgs, ...}: { - # Themes https://github.com/tinted-theming/base16-schemes +{ pkgs, ... }: { + # Themes https://github.com/tinted-theming/base16-schemes stylix = { image = /etc/nixos/git/docs/icons/nixos/white.png; polarity = "dark"; - base16Scheme = ./sakura-night.yaml; - # base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml"; + # base16Scheme = ./sakura-night.yaml; + base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml"; autoEnable = true; }; }