added hyfetch config

This commit is contained in:
willifan 2024-05-21 18:07:07 +02:00
parent e3176e1858
commit c104ae441c
3 changed files with 26 additions and 1 deletions

View File

@ -15,7 +15,6 @@
feh
hyfetch
enpass
webcord
obsidian

View File

@ -7,6 +7,7 @@
./auto-cpufreq.nix
./envvar.nix
./git.nix
./hyfetch.nix
./locales.nix
#./ssh.nix
./syncthing.nix

View File

@ -0,0 +1,25 @@
{ pkgs, home-manager, ... }:
{
home-manager.users.willifan = {
programs.hyfetch = {
enable = true;
settings = {
preset = "transgender";
mode = "rgb";
light_dark = "dark";
lightness = 0.69;
color_align = {
mode = "horizontal";
custom_colors = [];
fore_back = null;
};
backend = "neofetch";
args = null;
distro = null;
pride_month_shown = [];
pride_month_disable = false;
};
};
};
}