Nixos-Configuration/configurations/nixos/arma-reforger-tofu/default.nix
Jermeiah S 69e69c2b7f
Some checks failed
/ check (push) Failing after 6s
/ deploy (push) Has been skipped
migrate arma configs to module
2025-07-01 13:53:12 -04:00

28 lines
406 B
Nix

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