diff options
Diffstat (limited to 'user/home/hyfetch/default.nix')
| -rw-r--r-- | user/home/hyfetch/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/user/home/hyfetch/default.nix b/user/home/hyfetch/default.nix new file mode 100644 index 0000000..2c3cfd9 --- /dev/null +++ b/user/home/hyfetch/default.nix @@ -0,0 +1,16 @@ +{ config, lib, ... }: +{ + programs.hyfetch = { + enable = lib.mkDefault false; + settings = { + backend = "neofetch"; + color_align.mode = "horizontal"; + distro = "nixos_small"; + mode = "rgb"; + preset = "transgender"; + pride_month_disable = false; + }; + }; + + xdg.configFile."neofetch/config.conf".source = ./config.conf; +} |
