From e7febf54036ba14dc94ad17a6c14fe82876a3529 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Sat, 28 Oct 2023 13:48:56 +0200 Subject: [PATCH] chore: remove darwin systems --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 6c561ac..29dd03d 100644 --- a/flake.nix +++ b/flake.nix @@ -26,7 +26,7 @@ outputs = inputs@{ self, terranix, ... }: inputs.flake-parts.lib.mkFlake { inherit inputs; } { - systems = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ]; + systems = [ "x86_64-linux" "aarch64-linux" ]; imports = [ inputs.nixos-flake.flakeModule @@ -71,7 +71,7 @@ system = "x86_64-linux"; in { nixosConfigurations = { - nachtigall = self.nixos-flake.lib.mkLinuxSystem system { + nachtigall = self.nixos-flake.lib.mkLinuxSystem { imports = [ self.nixosModules.common ./hosts/nachtigall -- 2.44.1