From efcbdabe188c24f2a398096ac80c8fd90af273a4 Mon Sep 17 00:00:00 2001 From: mehbark Date: Mon, 14 Aug 2023 07:21:09 -0400 Subject: [PATCH] fix nixosConfigurations --- flake.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index a150971..72c8151 100644 --- a/flake.nix +++ b/flake.nix @@ -4,11 +4,13 @@ inputs.home-manager.inputs.nixpkgs.follows = "nixpkgs"; outputs = {self, nixpkgs, home-manager }: { - nixosConfigurations = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - modules = [ - ./configuration.nix - ]; + nixosConfigurations = { + mbk = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./configuration.nix + ]; + }; }; }; }