dotfiles/home-modules/fetch.nix

20 lines
389 B
Nix
Raw Normal View History

2024-08-06 23:16:18 +02:00
{ config, pkgs, ... }:
{
programs.hyfetch = {
enable = true;
settings = {
preset = "transgender";
mode = "rgb";
color_align = {
mode = "horizontal";
};
backend = "fastfetch";
light_dark = "dark";
};
};
home.packages = with pkgs; [
pkgs.fastfetch
];
}