summary refs log tree commit diff stats
path: root/system/settings/pin.nix
blob: 381115bd6631993d1cadd5378e9e7f9121e7f0da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:
let
  lib = import ../../lib { inherit pkgs; };
  sources = import ../../npins;
in
{
  nix.nixPath = lib.mkNixPath sources;
  nix.registry.nixpkgs.to = {
    type = "path";
    path = sources.nixpkgs;
  };
}