summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-04-01 07:26:51 -0600
committerAlejandro Soto <alejandro@34project.org>2022-04-01 08:00:56 -0600
commitf687240a3702be7e18b8b51d1b9c13482082c0cb (patch)
treef6db6035b67dea2063be62c15bdcedbb47e79eb2 /flake.nix
parentf7cc6c83af50e339efd44ef5e4a56770952821ac (diff)
sys: add btclone to systemPackages
Diffstat (limited to '')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 03b4010..d00eaea 100644
--- a/flake.nix
+++ b/flake.nix
@@ -29,7 +29,7 @@
nixosConfigurations = let
hostConfig = host: (makeOverridable nixosSystem) {
system = "x86_64-linux";
- modules = [ (import ./sys self) host ];
+ modules = [ (import ./sys { inherit self; }) host ];
};
in mapAttrs (_: hostConfig) (importAll { root = ./sys/platform; });