8 lines
215 B
Nix
8 lines
215 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [ (pkgs.writeScriptBin "pfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
|
|
file.".config/fastfetch/small.jsonc".source = ./small.jsonc;
|
|
};
|
|
}
|