add neuron flake

This commit is contained in:
Cyryl Płotnicki 2021-06-19 10:35:39 +01:00
parent a7ad59ff9b
commit 640ad5c15d
2 changed files with 77 additions and 1 deletions

View file

@ -35,6 +35,22 @@
"type": "github"
}
},
"flake-compat": {
"flake": false,
"locked": {
"lastModified": 1606424373,
"narHash": "sha256-oq8d4//CJOrVj+EcOaSXvMebvuTkmBJuT5tzlfewUnQ=",
"owner": "edolstra",
"repo": "flake-compat",
"rev": "99f1c2157fba4bfe6211a321fd0ee43199025dbf",
"type": "github"
},
"original": {
"owner": "edolstra",
"repo": "flake-compat",
"type": "github"
}
},
"flake-utils": {
"locked": {
"lastModified": 1623660459,
@ -51,6 +67,21 @@
"type": "github"
}
},
"flake-utils_2": {
"locked": {
"lastModified": 1617631617,
"narHash": "sha256-PARRCz55qN3gy07VJZIlFeOX420d0nGF0RzGI/9hVlw=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "b2c27d1a81b0dc266270fa8aeecebbd1807fc610",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
@ -72,6 +103,27 @@
"type": "github"
}
},
"neuron": {
"inputs": {
"flake-compat": "flake-compat",
"flake-utils": "flake-utils_2",
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1623446398,
"narHash": "sha256-cXWOR2lr62nRVkttwQ+rACBj9fDLfYKsizipbxoouiI=",
"owner": "srid",
"repo": "neuron",
"rev": "a8de7b0f106254abfd889ee335b3740e53f7c15d",
"type": "github"
},
"original": {
"owner": "srid",
"ref": "master",
"repo": "neuron",
"type": "github"
}
},
"nixos-hardware": {
"locked": {
"lastModified": 1623569835,
@ -133,6 +185,22 @@
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1620278081,
"narHash": "sha256-KcCxMcUFIqpZArUqHcLTdBXKJ1bsHnFdPALyB9auV7M=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "123db833485edf8df83f95ef2888113390768686",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"rev": "123db833485edf8df83f95ef2888113390768686",
"type": "github"
}
},
"nur": {
"locked": {
"lastModified": 1623872607,
@ -155,6 +223,7 @@
"bisq": "bisq",
"flake-utils": "flake-utils",
"home-manager": "home-manager",
"neuron": "neuron",
"nixos-hardware": "nixos-hardware",
"nixpkgs-nixos-unstable": "nixpkgs-nixos-unstable",
"nixpkgs-stable": "nixpkgs-stable",

View file

@ -1,6 +1,6 @@
{
description = "NixOS configuration with flakes";
outputs = { self, flake-utils, home-manager, nixpkgs-nixos-unstable, nixpkgs-stable, nixos-hardware, nur, bisq, agenix } @ inputs: {
outputs = { self, flake-utils, home-manager, nixpkgs-nixos-unstable, nixpkgs-stable, nixos-hardware, nur, bisq, agenix, neuron } @ inputs: {
nixosConfigurations = {
foureighty = nixpkgs-stable.lib.nixosSystem {
system = "x86_64-linux";
@ -110,6 +110,13 @@
repo = "agenix";
ref = "master";
};
neuron = {
type = "github";
owner = "srid";
repo = "neuron";
ref = "master";
};
};
}