Nixos-Configuration/configurations/nixos/arma-reforger-tofu/default.nix
Jermeiah S 8ffa756741
Some checks failed
/ deploy (push) Blocked by required conditions
/ check (push) Has been cancelled
chore: cleanup redundant module declarations
2025-07-01 17:51:59 -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";
}