Test
This commit is contained in:
parent
0fc01cc24a
commit
0098719998
3 changed files with 10 additions and 10 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{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;
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue