mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-30 22:57:58 +00:00
10 lines
149 B
Nix
10 lines
149 B
Nix
|
{ branch ? "nixos-stable" }:
|
||
|
|
||
|
let
|
||
|
sources = import ../npins;
|
||
|
pkgs = import sources.${branch} { };
|
||
|
in
|
||
|
{
|
||
|
lib = import ./lib { inherit pkgs; };
|
||
|
}
|