Nixos-Configuration/configurations/nixos/arma-reforger-tofu/default.nix
Jermeiah S 04670a8f09
All checks were successful
/ check (push) Successful in 2m10s
/ deploy (push) Has been skipped
disable arma deploy
2025-07-05 15:34:00 -04:00

25 lines
358 B
Nix

{
flake,
config,
pkgs,
lib,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
];
deploy.enable = false;
services.arma.enable = true;
networking = {
hostName = "arma-reforger-tofu";
};
# environment.systemPackages = with pkgs; [
# ];
system.stateVersion = "25.05";
}