1
0
Fork 0
forked from foxora/nix
flake-foxora/homes/modules/shell/fastfetch/fastfetch.nix

12 lines
237 B
Nix
Raw Permalink Normal View History

2026-02-13 23:27:35 +10:00
{upkgs, ...}: {
home.packages = with upkgs; [
2026-02-12 18:53:24 +00:00
fastfetch # displays system info! x3
];
# writes ./themes to ~/.config/fastfetch/themes
xdg.configFile."fastfetch/themes" = {
recursive = true;
source = ./themes;
};
}