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

13 lines
250 B
Nix
Raw Normal View History

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