9 lines
176 B
Nix
9 lines
176 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
(writeScriptBin "smallfetch" ''
|
|
#!/bin/sh
|
|
fastfetch --config ${builtins.toString ./config.jsonc}
|
|
'')
|
|
];
|
|
}
|