default.nix: retab

This commit is contained in:
tv 2015-07-25 18:16:51 +02:00
parent 0a5548c379
commit 3ddc26515a
1 changed files with 8 additions and 8 deletions

View File

@ -2,19 +2,19 @@
let
eval = import <nixpkgs/nixos/lib/eval-config.nix> {
eval = import <nixpkgs/nixos/lib/eval-config.nix> {
system = builtins.currentSystem;
modules = [
modules = [
(./1systems + "/${user-name}/${system-name}.nix")
(./3modules/krebs)
(./3modules + "/${user-name}")
];
};
(./3modules/krebs)
(./3modules + "/${user-name}")
];
};
in
{
inherit (eval) config options;
inherit (eval) config options;
system = eval.config.system.build.toplevel;
system = eval.config.system.build.toplevel;
}