2019-02-26 13:44:40 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2019-03-17 11:43:14 +01:00
|
|
|
with lib;
|
|
|
|
|
2019-02-26 13:44:40 +01:00
|
|
|
let
|
2019-04-14 18:35:37 +02:00
|
|
|
machinePath = (builtins.toPath ("/etc/nixos/machines/" + (fileContents /secret/hostName)));
|
2019-03-23 02:50:48 +01:00
|
|
|
machineConf = machinePath + "/configuration.nix";
|
|
|
|
machineOpts = machinePath + "/options.nix";
|
|
|
|
in {
|
2019-02-26 13:44:40 +01:00
|
|
|
imports = [
|
2019-03-23 02:50:48 +01:00
|
|
|
machineConf
|
|
|
|
machineOpts
|
|
|
|
./config/default.nix
|
2019-02-26 13:44:40 +01:00
|
|
|
./pkgs/nixpkgs.nix
|
|
|
|
./pkgs/pkgsets.nix
|
2019-03-23 02:50:48 +01:00
|
|
|
./services/containers.nix
|
|
|
|
./services/default.nix
|
2019-02-26 13:44:40 +01:00
|
|
|
];
|
|
|
|
}
|