From 795730369fe749db2f3eb57e2ccb9eaad80988e9 Mon Sep 17 00:00:00 2001 From: xqtc161 Date: Sat, 30 Mar 2024 18:14:25 +0100 Subject: [PATCH] module import paths --- hosts/x86_64-linux/seraphim/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/x86_64-linux/seraphim/default.nix b/hosts/x86_64-linux/seraphim/default.nix index f29976b..eab834c 100644 --- a/hosts/x86_64-linux/seraphim/default.nix +++ b/hosts/x86_64-linux/seraphim/default.nix @@ -8,10 +8,10 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix - ../../modules/home-manager.nix - ../../common + ../../../modules/home-manager.nix + ../../../common inputs.nixos-hardware.nixosModules.common-cpu-intel - ../gc.nix + ../../gc.nix ]; nixpkgs.config.allowUnfree = true; nix.settings.experimental-features = ["nix-command" "flakes"];