summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruakci <uakci@uakci.pl>2021-09-15 02:32:52 +0200
committeruakci <uakci@uakci.pl>2021-09-15 02:32:52 +0200
commit0887cb620401b2ddf631ed738b365ddcaafcf8f4 (patch)
treeb77034ff8aa08b37d85dfc12b923dd8102cc6e52
parentpreliminary nixos module (diff)
downloadnuogai-0887cb620401b2ddf631ed738b365ddcaafcf8f4.tar.gz
nuogai-0887cb620401b2ddf631ed738b365ddcaafcf8f4.zip
parameterisation
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 04a714b..22f6827 100644
--- a/flake.nix
+++ b/flake.nix
@@ -14,7 +14,6 @@
, serial-predicate-engine-upstream, flake-utils, ... }:
{
inherit (gomod2nix) devShell;
- nixosModule = a: import ./module.nix (a // { inherit self; system = "x86_64-linux"; });
} // flake-utils.lib.eachDefaultSystem (system:
let
pkgs = (import nixpkgs {
@@ -67,5 +66,6 @@
in {
defaultPackage = nuogai;
packages = schemePkgs // { inherit toaqScript nuogai; };
+ nixosModule = a: import ./module.nix (a // { inherit self system; });
});
}