mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 10:58:24 +00:00
16 lines
293 B
Nix
16 lines
293 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 ];
|
||
|
}
|