Enable hail service for pulsebert and glotzbert

This commit is contained in:
Emery Hemingway 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 Normal file
파일 보기

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