This commit is contained in:
Lucy 2025-09-16 00:24:06 +02:00
parent c8600dbe44
commit ce880f8195
3 changed files with 14 additions and 3 deletions

View file

@ -10,6 +10,10 @@
inputs.nixpkgs.follows = "nixpkgs";
};
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =

View file

@ -19,6 +19,7 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.useNetworkd = true;
networking.hostName = "games-night"; # Define your hostname.
# Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.

View file

@ -1,4 +1,9 @@
{config, lib, pkgs, ...}:
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.openarena-instance;
@ -8,7 +13,8 @@ let
sha256 = "f47c4cc5aaa7f59aa9d6ad4d76e9f4255cc8a88d9cfc2ba884bd8ab7ebf3ce00";
};
in {
in
{
options.services.openarena-instance = {
# ... existing options ...
};