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