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