mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +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; };
|
||
|
}
|