stockholm/default.nix

76 lines
2.2 KiB
Nix
Raw Normal View History

2016-02-04 03:44:26 +00:00
{ current-host-name ? abort "current-host-name not defined"
2015-10-17 04:30:20 +00:00
, current-user-name ? builtins.getEnv "LOGNAME"
, StrictHostKeyChecking ? "yes"
}@args:
2015-07-24 15:34:08 +00:00
let stockholm = {
2015-10-20 00:33:58 +00:00
inherit krebs;
inherit users;
inherit lib;
2015-10-21 20:29:35 +00:00
inherit pkgs;
2015-10-20 00:33:58 +00:00
};
krebs = import ./krebs (args // { inherit lib stockholm; });
2015-10-20 22:08:18 +00:00
2015-11-09 18:49:18 +00:00
lib = let
2016-02-04 03:35:39 +00:00
nlib = import (slib.npath "lib");
2015-11-09 18:49:18 +00:00
klib = import (slib.kpath "4lib") { lib = nlib; };
slib = rec {
2016-02-04 03:35:39 +00:00
npath = p: <nixpkgs> + "/${p}";
kpath = p: ./. + "/krebs/${p}";
upath = p: ./. + "/${current-user-name}/${p}";
2015-10-20 22:08:18 +00:00
};
2015-11-09 18:49:18 +00:00
ulib = let p = slib.upath "4lib"; in
nlib.optionalAttrs (klib.dir.has-default-nix p)
(import p { lib = nlib // klib; });
in nlib // klib // slib // ulib // builtins;
2015-10-17 03:44:42 +00:00
2015-10-21 20:29:35 +00:00
inherit (eval {}) pkgs;
2015-10-25 13:15:21 +00:00
base-module = { config, ... }: {
imports = builtins.filter lib.dir.has-default-nix (lib.concatLists [
2015-11-09 18:49:18 +00:00
(map (f: f "2configs") [ lib.upath ])
(map (f: f "3modules") [ lib.kpath lib.upath ])
2015-11-06 21:05:36 +00:00
]);
2015-10-17 03:44:42 +00:00
2015-10-25 13:15:21 +00:00
krebs.current.enable = true;
krebs.current.host = config.krebs.hosts.${current-host-name};
krebs.current.user = config.krebs.users.${current-user-name};
2015-11-09 18:49:18 +00:00
nixpkgs.config.packageOverrides = pkgs: let
kpkgs = import (lib.kpath "5pkgs") { inherit lib pkgs; };
upkgs = import (lib.upath "5pkgs") { inherit lib; pkgs = pkgs // kpkgs; };
in kpkgs // upkgs;
2015-10-17 03:44:42 +00:00
};
2015-10-02 13:29:47 +00:00
2016-02-04 03:35:39 +00:00
eval = config: import (lib.npath "nixos/lib/eval-config.nix") {
2015-10-20 22:08:18 +00:00
specialArgs = {
inherit lib;
};
2015-09-26 22:22:50 +00:00
modules = [
base-module
2015-10-20 00:33:58 +00:00
config
2015-07-25 16:16:51 +00:00
];
};
2015-07-24 15:34:08 +00:00
2015-10-20 00:33:58 +00:00
# TODO move user namespaces' to users/, so no exception for krebs/ is needed
users =
lib.mapAttrs
(name: _: eval-all-systems (lib.nspath name "1systems"))
(lib.filterAttrs
(n: t: !lib.hasPrefix "." n && t == "directory" && n != "krebs")
(builtins.readDir ./.));
eval-all-systems = path:
lib.mapAttrs'
(n: _: (lib.nameValuePair (lib.removeSuffix ".nix" n)
(eval-system (path + "/${n}"))))
(builtins.readDir path);
2015-09-26 22:22:50 +00:00
2015-10-20 00:33:58 +00:00
eval-system = path: rec {
2015-09-26 22:22:50 +00:00
inherit (eval path) config options;
system = config.system.build.toplevel;
};
in stockholm