forked from foxora/nix
13 lines
250 B
Nix
13 lines
250 B
Nix
|
|
{ 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;
|
||
|
|
};
|
||
|
|
}
|