mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: changes from the last while
This commit is contained in:
parent
9255d543a1
commit
b7c510de28
27 changed files with 885 additions and 195 deletions
38
nixos/profiles/graphical/infra.nix
Normal file
38
nixos/profiles/graphical/infra.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{ config, lib, ... }: let
|
||||
inherit (lib.modules) mkIf mkDefault;
|
||||
in {
|
||||
gensokyo-zone = {
|
||||
access = {
|
||||
tail.enable = mkDefault true;
|
||||
local.enable = mkDefault (config.networking.hostName == "goliath");
|
||||
};
|
||||
nix = {
|
||||
enable = true;
|
||||
cache.infrastructure.enable = true;
|
||||
builder.enable = true;
|
||||
};
|
||||
kyuuto = {
|
||||
enable = mkDefault true;
|
||||
shared.enable = mkDefault true;
|
||||
#domain = mkIf config.gensokyo-zone.access.local.enable "local.${domain}";
|
||||
};
|
||||
/*krb5 = {
|
||||
enable = mkDefault true;
|
||||
sssd = {
|
||||
enable = mkDefault true;
|
||||
# TODO: sssd ldap backend config is currently broken for unknown reasons
|
||||
# EDIT: wait ifp was disabled maybe it's actually just fine and I'm dumb?
|
||||
backend = "ipa";
|
||||
};
|
||||
nfs.enable = mkDefault true;
|
||||
#nfs.debug.enable = true;
|
||||
ipa.enable = mkDefault true;
|
||||
};*/
|
||||
dns = {
|
||||
enable = mkDefault true;
|
||||
};
|
||||
monitoring = {
|
||||
enable = mkIf config.gensokyo-zone.access.local.enable (mkDefault true);
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue