mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-01 04:57:55 +00:00
Gabriel Arazas
7009462c3c
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 ];
|
|
}
|