Enable hail service for pulsebert and glotzbert

这个提交包含在:
Ehmry - 2019-11-09 14:53:11 +01:00
父节点 a0a49e1e7e
当前提交 239de4b010
共有 3 个文件被更改,包括 10 次插入0 次删除

查看文件

@ -17,6 +17,8 @@ in
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../lib/default-gateway.nix
../../lib/hail.nix
../../lib/hq.nix
];
# Use the systemd-boot EFI boot loader.

查看文件

@ -16,6 +16,7 @@ in {
../../lib/users.nix
../../lib/mpd.nix
../../lib/yggdrasil.nix
../../lib/hail.nix
];
# Use the systemd-boot EFI boot loader.

7
lib/hail.nix 普通文件
查看文件

@ -0,0 +1,7 @@
{ config, ... }: {
services.hail = {
enable = true;
hydraJobUri = "https://hydra.hq.c3d2.de/job/c3d2/hail/${config.networking.hostname}-activator;";
};
}