fix file systems import path
This commit is contained in:
parent
c2d1230a00
commit
7bffd55c6f
|
@ -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
|
||||
];
|
||||
|
||||
};
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
imports = [
|
||||
./locale.nix
|
||||
../../local/file-systems.nix
|
||||
../local/file-systems.nix
|
||||
];
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue