mochi/nixos/profiles/global.nix
Joseph Hanson f30f5e0ad5 tailscale --> caddy lb --> proxmox nodes
add caddy to global environment packages

caddy config and add Caddyfile to remove-tabs ignore

update name

proxymox
2025-01-10 23:15:41 -06:00

47 lines
898 B
Nix

{
config,
lib,
pkgs,
modulesPath,
...
}:
with lib;
{
# NOTE
# Some 'global' areas have defaults set in their respective modules.
# These will be applied when the modules are loaded
# Not the global role.
# Not sure at this point a good way to manage globals in one place
# without mono-repo config.
imports = [
./global
];
config = {
boot.tmp.cleanOnBoot = true;
mySystem = {
# basics for all devices
editor.vim.enable = true;
time.timeZone = "America/Chicago";
security.increaseWheelLoginLimits = true;
system.packages = [ pkgs.bat ];
domain = "hsn.dev";
shell.fish.enable = true;
};
environment.systemPackages = with pkgs; [
curl
dnsutils
jq
nvme-cli
smartmontools
unstable.caddy
wget
yq-go
];
networking.domain = config.mySystem.domain;
};
}