diff --git a/users/willifan/applications.nix b/users/willifan/applications.nix index b36ef90..f0965c0 100644 --- a/users/willifan/applications.nix +++ b/users/willifan/applications.nix @@ -15,7 +15,6 @@ feh - hyfetch enpass webcord obsidian diff --git a/users/willifan/default.nix b/users/willifan/default.nix index 65b3a03..d99b5b5 100644 --- a/users/willifan/default.nix +++ b/users/willifan/default.nix @@ -7,6 +7,7 @@ ./auto-cpufreq.nix ./envvar.nix ./git.nix + ./hyfetch.nix ./locales.nix #./ssh.nix ./syncthing.nix diff --git a/users/willifan/hyfetch.nix b/users/willifan/hyfetch.nix new file mode 100644 index 0000000..7e463ee --- /dev/null +++ b/users/willifan/hyfetch.nix @@ -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; + }; + }; + }; +}