go back to old nixpkgs pin

This commit is contained in:
Sean Buckley 2024-06-16 21:23:59 -04:00
parent e43e174fd4
commit 6c8bfaf6e9

View file

@ -14,6 +14,20 @@
forAllSystems = lib.genAttrs [ "x86_64-linux" ]; forAllSystems = lib.genAttrs [ "x86_64-linux" ];
pins = {
nix.registry.nixpkgs.to = {
inherit (nixpkgs) rev;
owner = "NixOS";
repo = "nixpkgs";
type = "github";
};
nix.registry.bck.to = {
owner = "buckley310";
repo = "nixos-config";
type = "github";
};
};
in in
{ {
formatter = forAllSystems (system: formatter = forAllSystems (system:
@ -33,13 +47,9 @@
nixosModules = nixosModules =
{ {
inherit pins;
inherit (impermanence.nixosModules) impermanence; inherit (impermanence.nixosModules) impermanence;
pkgs.nixpkgs.overlays = [ (_: mypkgs) ]; pkgs.nixpkgs.overlays = [ (_: mypkgs) ];
pins.nix.registry.bck.to = {
owner = "buckley310";
repo = "nixos-config";
type = "github";
};
} // } //
self.lib.dirToAttrs ./modules import; self.lib.dirToAttrs ./modules import;