remove unused nurpkgs

This commit is contained in:
colin 2022-07-06 14:03:28 -07:00
parent 4d3caf6fde
commit c673e1db92
2 changed files with 2 additions and 20 deletions

View File

@ -115,28 +115,12 @@
"type": "github"
}
},
"nurpkgs": {
"locked": {
"lastModified": 1657092940,
"narHash": "sha256-CCadT5373eCDAKkfLVAnJrf5krX5B6Go+YlULi9MsB0=",
"owner": "nix-community",
"repo": "NUR",
"rev": "f21f863b74ed65b8802008aa2497e0fbd58bbe63",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "NUR",
"type": "github"
}
},
"root": {
"inputs": {
"home-manager": "home-manager",
"impermanence": "impermanence",
"mobile-nixos": "mobile-nixos",
"nixpkgs": "nixpkgs",
"nurpkgs": "nurpkgs",
"sops-nix": "sops-nix"
}
},

View File

@ -14,12 +14,11 @@
url = "github:nix-community/home-manager/release-22.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nurpkgs.url = "github:nix-community/NUR";
sops-nix.url = "github:Mic92/sops-nix";
impermanence.url = "github:nix-community/impermanence";
};
outputs = { self, nixpkgs, mobile-nixos, home-manager, nurpkgs, sops-nix, impermanence }:
outputs = { self, nixpkgs, mobile-nixos, home-manager, sops-nix, impermanence }:
let
patchedPkgs = system: nixpkgs.legacyPackages.${system}.applyPatches {
name = "nixpkgs-patched-uninsane";
@ -35,7 +34,7 @@
nixosSystem = import ((patchedPkgs system) + "/nixos/lib/eval-config.nix");
in (nixosSystem {
inherit system;
specialArgs = { inherit nixpkgs mobile-nixos home-manager nurpkgs impermanence; };
specialArgs = { inherit nixpkgs mobile-nixos home-manager impermanence; };
modules = [
./modules
./machines/${name}
@ -44,7 +43,6 @@
{
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [
nurpkgs.overlay
(import "${mobile-nixos}/overlay/overlay.nix")
(import ./pkgs/overlay.nix)
];