mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
11 lines
204 B
Nix
11 lines
204 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
wrappers.fastfetch = {
|
|
arg0 = lib.getExe' pkgs.fastfetch "fastfetch";
|
|
appendArgs = [ "--logo" "Guix" ];
|
|
env.NO_COLOR = "1";
|
|
xdg.desktopEntry.enable = true;
|
|
};
|
|
}
|