mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
24 lines
771 B
Nix
24 lines
771 B
Nix
let
|
|
sources = import ../../npins;
|
|
in
|
|
{
|
|
pkgs ? import sources.nixos-unstable { },
|
|
}:
|
|
|
|
let
|
|
wmLib = (import ../../. { }).lib;
|
|
build = args: wmLib.build (args // { inherit pkgs; });
|
|
in
|
|
{
|
|
fastfetch = build { modules = [ ./wrapper-fastfetch.nix ]; };
|
|
neofetch = build {
|
|
modules = [ ./wrapper-neofetch.nix ];
|
|
specialArgs.yourMomName = "Yor mom";
|
|
};
|
|
xdg-desktop-entry = build { modules = [ ./xdg-desktop-entry.nix ]; };
|
|
xdg-basedirs = build { modules = [ ./xdg-basedirs.nix ]; };
|
|
single-basepackage = build { modules = [ ./single-basepackage.nix ]; };
|
|
neofetch-with-additional-files = build { modules = [ ./neofetch-with-additional-files.nix ]; };
|
|
lib-modules-make-wraparound = build { modules = [ ./lib-modules-subset/make-wraparound.nix ]; };
|
|
}
|