From 1fc8f4ae77f38b1b983f07b3c8a876e0acda1ba3 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 29 Jun 2023 14:21:07 -0600 Subject: [PATCH] [NixOS] Add base.nix default to bootstrap flake --- nixos/bootstrap/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/bootstrap/flake.nix b/nixos/bootstrap/flake.nix index 35826e73..ebc2cb75 100644 --- a/nixos/bootstrap/flake.nix +++ b/nixos/bootstrap/flake.nix @@ -50,7 +50,7 @@ mkConfigurationParams = filename: { name = machineNameFromFilename filename; value = { - modules = [ (machinesPath + ("/" + filename)) ]; + modules = [ (machinesPath + ("/" + filename)) ../base.nix ]; }; }; defaultConfigurationParams =