mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-01 04:57:55 +00:00
12 lines
214 B
Nix
12 lines
214 B
Nix
{ lib, pkgs, yourMomName, ... }:
|
|
|
|
{
|
|
arg0 = lib.getExe' pkgs.neofetch "neofetch";
|
|
executableName = yourMomName;
|
|
appendArgs = [
|
|
"--ascii_distro" "guix"
|
|
"--title_fqdn" "off"
|
|
"--os_arch" "off"
|
|
];
|
|
}
|