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 feh
hyfetch
enpass enpass
webcord webcord
obsidian obsidian

View file

@ -7,6 +7,7 @@
./auto-cpufreq.nix ./auto-cpufreq.nix
./envvar.nix ./envvar.nix
./git.nix ./git.nix
./hyfetch.nix
./locales.nix ./locales.nix
#./ssh.nix #./ssh.nix
./syncthing.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;
};
};
};
}