nix-module-wrapper-manager-fds/tests/configs/default.nix

17 lines
349 B
Nix
Raw Normal View History

let
sources = import ../../npins;
in
2024-07-31 13:51:40 +00:00
{
pkgs ? import sources.nixos-unstable { },
}:
let
wmLib = (import ../../. { }).lib;
2024-07-31 13:51:40 +00:00
build = modules: wmLib.build { inherit pkgs modules; };
in
{
fastfetch = build [ ./wrapper-fastfetch.nix ];
neofetch = build [ ./wrapper-neofetch.nix ];
single-basepackage = build [ ./single-basepackage.nix ];
}