11 lines
280 B
Nix
11 lines
280 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.fastfetch.enable = true;
|
|
|
|
home = {
|
|
shellAliases.ff = "clear && fastfetch";
|
|
packages = with pkgs; [ (writeScriptBin "smallfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
|
|
};
|
|
|
|
xdg.configFile."fastfetch".source = ./configs;
|
|
}
|