nixos-config/subprojects/bahaghari/tests/default.nix
Gabriel Arazas e74640cf16
bahaghari: use npins for pinning nixpkgs branches
This makes it possible for easier way to contribute with non-flakes
usage.
2024-06-05 21:16:01 +08:00

12 lines
244 B
Nix

# This is the unit cases for our Nix project.
{ branch ? "nixos-stable" }:
let
sources = import ../npins;
pkgs = import sources.${branch} { };
in
{
lib = import ./lib { inherit pkgs; };
#modules = import ./modules { inherit pkgs; };
}