2024-07-27 12:17:48 +00:00
|
|
|
let
|
|
|
|
sources = import ../../npins;
|
|
|
|
in
|
2024-07-31 13:51:40 +00:00
|
|
|
{
|
|
|
|
pkgs ? import sources.nixos-unstable { },
|
|
|
|
}:
|
2024-07-27 12:17:48 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
wmLib = (import ../../. { }).lib;
|
2024-07-31 13:51:40 +00:00
|
|
|
build = modules: wmLib.build { inherit pkgs modules; };
|
2024-07-27 12:17:48 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
fastfetch = build [ ./wrapper-fastfetch.nix ];
|
|
|
|
neofetch = build [ ./wrapper-neofetch.nix ];
|
2024-08-01 04:07:34 +00:00
|
|
|
single-basepackage = build [ ./single-basepackage.nix ];
|
2024-09-17 10:18:59 +00:00
|
|
|
neofetch-with-additional-files = build [ ./neofetch-with-additional-files.nix ];
|
2024-07-27 12:17:48 +00:00
|
|
|
}
|