aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-02-10 16:25:33 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-02-10 16:26:33 +0100
commit64e5f4d53b2740bffb16641f703b9cf0df58b84e (patch)
treefeedc314ed3bcf26b6234d21c847d0e029c1c604 /flake.nix
parent5c389f84d42538f41e3e9a73b5e6bee645d45ebf (diff)
Fix 'nix flake check'
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index e2346f99c7aa..197b6e2056ec 100644
--- a/flake.nix
+++ b/flake.nix
@@ -30,7 +30,7 @@
});
};
- checks.tarball = jobs.tarball;
+ checks.x86_64-linux.tarball = jobs.tarball;
htmlDocs = {
nixpkgsManual = jobs.manual;
@@ -42,7 +42,7 @@
legacyPackages = forAllSystems (system: import ./. { inherit system; });
nixosModules = {
- notDetected = ./nixos/modules/installer/scan/not-detected.nix;
+ notDetected = import ./nixos/modules/installer/scan/not-detected.nix;
};
};
}