blob: 2c3cfd9856c8176c641a44c3b2bdad84628f56c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}
|