From 7bffd55c6f6e0ffd321427ab5d377da66e2d6e52 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Thu, 5 Dec 2019 11:09:17 -0700 Subject: [PATCH] fix file systems import path --- configurations/default.nix | 12 ++++++------ profiles/core.nix | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configurations/default.nix b/configurations/default.nix index dba232ae..39a7bd38 100644 --- a/configurations/default.nix +++ b/configurations/default.nix @@ -21,9 +21,9 @@ let system = "x86_64-linux"; modules = let - coreConfig = ../profiles/core.nix; + core = ../profiles/core.nix; - globalConfig = { + global = { system.configurationRevision = flake.rev; networking.hostName = "${this}"; @@ -31,13 +31,13 @@ let nix.package = nix.defaultPackage."${system}"; }; - thisConfig = ./. + "/${this}.nix"; + local = ./. + "/${this}.nix"; in [ - coreConfig - globalConfig - thisConfig + core + global + local ]; }; diff --git a/profiles/core.nix b/profiles/core.nix index 2cb6f08c..3b019777 100644 --- a/profiles/core.nix +++ b/profiles/core.nix @@ -3,7 +3,7 @@ imports = [ ./locale.nix - ../../local/file-systems.nix + ../local/file-systems.nix ];