flakes/machines/trench/default.nix
Chinmay D. Pai 09b8d3e94a
chore: add packages
* add easyeffects to hades for autoeq
* add nomad and tailscale to trench

Signed-off-by: Chinmay D. Pai <chinmay.pai@zerodha.com>
2023-10-18 19:26:25 +05:30

26 lines
463 B
Nix

{pkgs, ...}: {
imports = [
./hardware.nix
../../modules/commons
../../modules/nixos/core-server.nix
../../modules/nixos/user-group.nix
../../modules/programs/nixvim
];
environment.systemPackages = with pkgs; [
nomad_1_6
tailscale
];
services = {
unifi = {
enable = true;
unifiPackage = pkgs.unifi7;
maximumJavaHeapSize = 256;
openFirewall = true;
};
};
system.stateVersion = "23.05";
}