From 640ad5c15dc305190cf22a16fe8b7519d5fc0bff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sat, 19 Jun 2021 10:35:39 +0100 Subject: [PATCH] add neuron flake --- flake.lock | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ flake.nix | 9 ++++++- 2 files changed, 77 insertions(+), 1 deletion(-) diff --git a/flake.lock b/flake.lock index d51336c3..675f2cde 100644 --- a/flake.lock +++ b/flake.lock @@ -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", diff --git a/flake.nix b/flake.nix index ed69b5c2..1262aca3 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; + }; }; }