1
0
Fork 0
nixos/configuration.nix

20 lines
419 B
Nix
Raw Normal View History

2019-02-26 13:44:40 +01:00
{ config, lib, pkgs, ... }:
with lib;
2019-02-26 13:44:40 +01:00
let
2019-04-18 07:40:47 +02:00
machinePath = (builtins.toPath ( ./machines + ("/" + (fileContents /secret/hostName))));
machineConf = machinePath + "/configuration.nix";
machineOpts = machinePath + "/options.nix";
in {
2019-02-26 13:44:40 +01:00
imports = [
machineConf
machineOpts
./config/default.nix
2019-02-26 13:44:40 +01:00
./pkgs/nixpkgs.nix
./pkgs/pkgsets.nix
./services/containers.nix
./services/default.nix
2019-02-26 13:44:40 +01:00
];
}