This commit is contained in:
Charlotte 🦝 Delenk 2022-01-18 16:02:12 +00:00
parent fae321a6f7
commit c1e6e53275
Signed by: darkkirb
GPG key ID: 015E3768A70AFBC5
2 changed files with 19 additions and 1 deletions

View file

@ -202,11 +202,27 @@
"type": "github"
}
},
"nur": {
"locked": {
"lastModified": 1642515795,
"narHash": "sha256-JG85xzIfRtw1rPx7WEWKwm4mJRRdiwaQ5WwGd+7HeRc=",
"owner": "nix-community",
"repo": "NUR",
"rev": "3c82b50921b68b08abd0d299b453942c6feee7a0",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "NUR",
"type": "github"
}
},
"root": {
"inputs": {
"chir-rs": "chir-rs",
"home-manager": "home-manager",
"nixpkgs": "nixpkgs_5",
"nur": "nur",
"sops-nix": "sops-nix"
}
},

View file

@ -9,8 +9,9 @@ rec {
inputs.sops-nix.inputs.nixpkgs.follows = "nixpkgs";
inputs.chir-rs.url = "git+https://git.chir.rs/darkkirb/chir.rs.git?ref=main";
#inputs.chir-rs.inputs.nixpkgs.follows = "nixpkgs"; # nixpkgs regression?
inputs.nur.url = github:nix-community/NUR;
outputs = { self, nixpkgs, sops-nix, home-manager, chir-rs, ... } @ args: {
outputs = { self, nixpkgs, sops-nix, home-manager, chir-rs, nur, ... } @ args: {
nixosConfigurations =
let
systems = [
@ -34,6 +35,7 @@ rec {
(self: super: {
chir-rs = chir-rs.outputs.defaultPackage.x86_64-linux;
})
nur.overlay
];
})
];