From 72b9616f871f053cedb09de32fb8670d73b9aa1e Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 7 May 2024 14:03:53 +0300 Subject: [PATCH] fix(system): remove ambigious `system` from `nixosSystem` --- system/flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/system/flake.nix b/system/flake.nix index c17aee9..28a0842 100644 --- a/system/flake.nix +++ b/system/flake.nix @@ -11,11 +11,13 @@ in { nixosConfigurations.${hostName} = nixpkgs.lib.nixosSystem { - inherit system; modules = [ ./configuration.nix - { networking.hostName = hostName; } + { + networking.hostName = hostName; + nixpkgs.hostPlatform = system; + } ]; specialArgs = {