From c2bc64ed5cbde8b5e1132edddb7d92ce4c3748ad Mon Sep 17 00:00:00 2001 From: Joakim Repomaa Date: Tue, 2 Jul 2024 11:08:11 +0300 Subject: [PATCH] fix flake parts config --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 6e40530..198330a 100644 --- a/flake.nix +++ b/flake.nix @@ -9,13 +9,16 @@ }; outputs = { flake-parts, nixpkgs, ... }@inputs: ( flake-parts.lib.mkFlake { inherit inputs; } { - nixosConfigurations = { + flake.nixosConfigurations = { freun-dev = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = inputs; modules = [ ./hosts/freun-dev ]; }; }; + systems = [ + "x86_64-linux" + ]; } ); }