nix-module-wrapper-manager-fds/tests/configs/default.nix
Gabriel Arazas 03e29feec5 wrapper-manager-fds/modules: change basePackages to accept a bare package
This will allow us to make changes to `programs.<name>.package`-type of
options found in NixOS, home-manager, etc. but it is expensive at the
cost of a rebuild which depends on the package.
2024-08-01 12:07:34 +08:00

17 lines
349 B
Nix

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 ];
single-basepackage = build [ ./single-basepackage.nix ];
}