Ryan Lahfa
862f004e3c
Some checks failed
Check meta / check_meta (pull_request) Successful in 19s
Check meta / check_dns (pull_request) Successful in 18s
build configuration / build_krz01 (pull_request) Successful in 1m13s
build configuration / build_storage01 (pull_request) Successful in 1m12s
build configuration / build_vault01 (pull_request) Successful in 1m7s
build configuration / build_compute01 (pull_request) Successful in 1m21s
build configuration / build_web02 (pull_request) Successful in 1m4s
build configuration / build_rescue01 (pull_request) Successful in 1m4s
build configuration / build_web01 (pull_request) Successful in 1m35s
build configuration / build_geo01 (pull_request) Successful in 59s
build configuration / build_bridge01 (pull_request) Successful in 1m2s
lint / check (pull_request) Successful in 25s
build configuration / build_geo02 (pull_request) Successful in 1m4s
build configuration / push_to_cache_krz01 (pull_request) Successful in 1m29s
build configuration / push_to_cache_storage01 (pull_request) Successful in 1m19s
build configuration / push_to_cache_vault01 (pull_request) Successful in 1m43s
build configuration / push_to_cache_rescue01 (pull_request) Successful in 1m33s
build configuration / push_to_cache_web02 (pull_request) Successful in 1m34s
build configuration / push_to_cache_compute01 (pull_request) Successful in 2m3s
build configuration / push_to_cache_geo01 (pull_request) Successful in 1m7s
build configuration / push_to_cache_web01 (pull_request) Successful in 2m8s
build configuration / push_to_cache_geo02 (pull_request) Successful in 1m7s
build configuration / push_to_cache_bridge01 (pull_request) Successful in 1m10s
build configuration / build_storage01 (push) Has been cancelled
build configuration / build_vault01 (push) Has been cancelled
build configuration / build_rescue01 (push) Has been cancelled
build configuration / build_geo01 (push) Has been cancelled
build configuration / build_geo02 (push) Has been cancelled
build configuration / build_bridge01 (push) Has been cancelled
build configuration / push_to_cache_krz01 (push) Has been cancelled
build configuration / push_to_cache_compute01 (push) Has been cancelled
build configuration / push_to_cache_storage01 (push) Has been cancelled
build configuration / push_to_cache_rescue01 (push) Has been cancelled
build configuration / push_to_cache_geo01 (push) Has been cancelled
build configuration / push_to_cache_geo02 (push) Has been cancelled
build configuration / push_to_cache_vault01 (push) Has been cancelled
build configuration / push_to_cache_web01 (push) Has been cancelled
build configuration / push_to_cache_web02 (push) Has been cancelled
build configuration / push_to_cache_bridge01 (push) Has been cancelled
build configuration / build_web01 (push) Has been cancelled
build configuration / build_web02 (push) Has been cancelled
build configuration / build_compute01 (push) Has been cancelled
build configuration / build_krz01 (push) Has been cancelled
lint / check (push) Successful in 25s
Until #139 is merged. Signed-off-by: Ryan Lahfa <ryan@dgnum.eu>
28 lines
566 B
Nix
28 lines
566 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# INFO: This list needs to stay sorted alphabetically
|
|
];
|
|
|
|
enabledServices = [
|
|
# INFO: This list needs to stay sorted alphabetically
|
|
# TODO: re-enable me when #139 is merged. "proxmox"
|
|
];
|
|
|
|
extraConfig = {
|
|
dgn-hardware = {
|
|
useZfs = true;
|
|
zfsPools = [
|
|
"dpool"
|
|
"ppool0"
|
|
];
|
|
};
|
|
|
|
services.netbird.enable = true;
|
|
|
|
users.users.root.hashedPassword = "$y$j9T$eNZQgDN.J5y7KTG2hXgat1$J1i5tjx5dnSZu.C9B7swXi5zMFIkUnmRrnmyLHFAt8/";
|
|
};
|
|
|
|
root = ./.;
|
|
}
|