forked from foxora/nix
11 lines
237 B
Nix
11 lines
237 B
Nix
{upkgs, ...}: {
|
|
home.packages = with upkgs; [
|
|
fastfetch # displays system info! x3
|
|
];
|
|
|
|
# writes ./themes to ~/.config/fastfetch/themes
|
|
xdg.configFile."fastfetch/themes" = {
|
|
recursive = true;
|
|
source = ./themes;
|
|
};
|
|
}
|