This commit is contained in:
albert 2024-02-18 20:43:50 +09:00
parent 0fc01cc24a
commit 0098719998
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
3 changed files with 10 additions and 10 deletions

View file

@ -6,7 +6,7 @@ let
errorColor = "#${config.lib.stylix.colors.base04}"; errorColor = "#${config.lib.stylix.colors.base04}";
fgColor = "#${config.lib.stylix.colors.base02}"; fgColor = "#${config.lib.stylix.colors.base02}";
blackColor = "#${config.lib.stylix.colors.base00}"; blackColor = "#${config.lib.stylix.colors.base00}";
whiteColor = "#${config.lib.stylix.colors.base07}"; whiteColor = "#${config.lib.stylix.colors.base06}";
in in
{ {
programs.starship = { programs.starship = {
@ -40,7 +40,7 @@ in
hostname = { hostname = {
ssh_only = true; ssh_only = true;
style = "fg:${fgColor} bg:${usernameColor}"; style = "fg:${whiteColor} bg:${usernameColor}";
format = "[@$hostname]($style)"; format = "[@$hostname]($style)";
disabled = false; disabled = false;
}; };
@ -84,7 +84,7 @@ in
status = { status = {
style = "fg:${fgColor} bg:${errorColor}"; style = "fg:${fgColor} bg:${errorColor}";
format = "[$status ]($style)"; format = "[ $status]($style)";
disabled = false; disabled = false;
}; };

View file

@ -1,5 +1,5 @@
{lib, inputs, pkgs, gpu, system, theme, ...}: { { ... }: {
# Themes https://github.com/tinted-theming/base16-schemes # Themes https://github.com/tinted-theming/base16-schemes
stylix = { stylix = {
image = /etc/nixos/git/docs/icons/nixos/white.png; image = /etc/nixos/git/docs/icons/nixos/white.png;
polarity = "dark"; polarity = "dark";

View file

@ -1,10 +1,10 @@
{pkgs, ...}: { { pkgs, ... }: {
# Themes https://github.com/tinted-theming/base16-schemes # Themes https://github.com/tinted-theming/base16-schemes
stylix = { stylix = {
image = /etc/nixos/git/docs/icons/nixos/white.png; image = /etc/nixos/git/docs/icons/nixos/white.png;
polarity = "dark"; polarity = "dark";
base16Scheme = ./sakura-night.yaml; # base16Scheme = ./sakura-night.yaml;
# base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml"; base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml";
autoEnable = true; autoEnable = true;
}; };
} }