From 3e5c368a86703411133979b00e3875857632641c Mon Sep 17 00:00:00 2001 From: Spectre Date: Sat, 8 Jun 2024 15:16:58 +0200 Subject: [PATCH] base --- system/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/system/default.nix b/system/default.nix index 300090e6..14bd5277 100644 --- a/system/default.nix +++ b/system/default.nix @@ -11,13 +11,17 @@ specialArgs = inputs; in { base = nixpkgs.lib.nixosSystem { - ./common.nix + inherit system specialArgs; - conf.extraConfig - conf.hardware-configuration + modules = [ + ./common.nix - ./base.nix - ./boot.nix + conf.extraConfig + conf.hardware-configuration + + ./base.nix + ./boot.nix + ]; }; full = nixpkgs.lib.nixosSystem {