28 lines
406 B
Nix
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";
|
|
}
|