Nixos-Configuration/configurations/nixos/arma-reforger-tofu/default.nix
Jermeiah S 7dde5410e4
All checks were successful
/ check (push) Successful in 1m23s
/ deploy (push) Has been skipped
chore: cleanup redundant module declarations
2025-07-01 17:52:26 -04:00

26 lines
335 B
Nix

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