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

16 lines
293 B
Nix
Raw Normal View History

let
sources = import ../../npins;
in
{ pkgs ? import sources.nixos-unstable { } }:
let
wmLib = (import ../../. { }).lib;
build = modules: wmLib.build {
inherit pkgs modules;
};
in
{
fastfetch = build [ ./wrapper-fastfetch.nix ];
neofetch = build [ ./wrapper-neofetch.nix ];
}