10 lines
247 B
Nix
10 lines
247 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
file.".config/fastfetch/small.jsonc".source = ./small.jsonc;
|
|
packages = let
|
|
pFetch = pkgs.writeScriptBin "pfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc";
|
|
in with pkgs; [ pFetch ];
|
|
};
|
|
}
|