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