mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
Gabriel Arazas
03e29feec5
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.
17 lines
349 B
Nix
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 ];
|
|
}
|