From 935748fbe56cc3eed49a56d683e501c628618b5a Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 21 Nov 2022 10:33:10 -0600 Subject: [PATCH] adding kohlin to the flake --- README.org | 6 ++++++ flake.nix | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/README.org b/README.org index 2e6def5..3b7d2c2 100644 --- a/README.org +++ b/README.org @@ -132,6 +132,12 @@ Both include the home-manager module. Primarily I chose that route so that I cou nix-bitcoin.nixosModules.default ]; }; + kohlin = nixpkgs-stable.lib.nixosSystem { + inherit system; + modules = [ + ./system/kohlin/configuration.nix + ]; + }; }; }; } diff --git a/flake.nix b/flake.nix index 03c2523..5c821b2 100644 --- a/flake.nix +++ b/flake.nix @@ -105,6 +105,12 @@ nix-bitcoin.nixosModules.default ]; }; + kohlin = nixpkgs-stable.lib.nixosSystem { + inherit system; + modules = [ + ./system/kohlin/configuration.nix + ]; + }; }; }; }