fix file systems import path

This commit is contained in:
Timothy DeHerrera 2019-12-05 11:09:17 -07:00
parent c2d1230a00
commit 7bffd55c6f
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
2 changed files with 7 additions and 7 deletions

View file

@ -21,9 +21,9 @@ let
system = "x86_64-linux"; system = "x86_64-linux";
modules = let modules = let
coreConfig = ../profiles/core.nix; core = ../profiles/core.nix;
globalConfig = { global = {
system.configurationRevision = flake.rev; system.configurationRevision = flake.rev;
networking.hostName = "${this}"; networking.hostName = "${this}";
@ -31,13 +31,13 @@ let
nix.package = nix.defaultPackage."${system}"; nix.package = nix.defaultPackage."${system}";
}; };
thisConfig = ./. + "/${this}.nix"; local = ./. + "/${this}.nix";
in in
[ [
coreConfig core
globalConfig global
thisConfig local
]; ];
}; };

View file

@ -3,7 +3,7 @@
imports = [ imports = [
./locale.nix ./locale.nix
../../local/file-systems.nix ../local/file-systems.nix
]; ];