diff options
| author | uakci <uakci@uakci.pl> | 2022-02-16 14:28:26 +0100 |
|---|---|---|
| committer | uakci <uakci@uakci.pl> | 2022-02-16 14:28:26 +0100 |
| commit | 519329b67b1d9f22069318b2798ff7f691894e24 (patch) | |
| tree | 2ee24f1cdfb8c3924fc592d6e65d2c25dfed9a42 | |
| parent | hotfix & nixfmt (diff) | |
| download | nuogai-519329b67b1d9f22069318b2798ff7f691894e24.tar.gz nuogai-519329b67b1d9f22069318b2798ff7f691894e24.zip | |
remove ${system} subpath from flake nixosModule
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,6 +14,8 @@ , serial-predicate-engine-upstream, flake-utils, ... }: { inherit (gomod2nix) devShell; + nixosModule = { config, pkgs, lib, ... }@args: + import ./module.nix (args // { inherit self; }); } // flake-utils.lib.eachDefaultSystem (system: let pkgs = (import nixpkgs { @@ -69,7 +71,5 @@ in { defaultPackage = nuogai; packages = schemePkgs // { inherit toaqScript nuogai; }; - nixosModule = { config, pkgs, lib, ... }@a: - import ./module.nix (a // { inherit self system; }); }); } |
