This commit is contained in:
2026-01-05 10:09:18 -06:00
parent 10f8d192fd
commit f9eca3ebde
3 changed files with 9 additions and 9 deletions

View File

@@ -833,11 +833,11 @@
"sops-nix": "sops-nix"
},
"locked": {
"lastModified": 1767565994,
"narHash": "sha256-JNe9MY0GY2R8uhFQAGoJfFiv/pKgCHp5pdPPfKouMWY=",
"lastModified": 1767629147,
"narHash": "sha256-dyqniDtLzGhk5RZZ4s7GJmZdF++y0LMeYqMAl2tdPhI=",
"ref": "refs/heads/master",
"rev": "cc834fd85d14d89d54109c53cd0725758d60a0af",
"revCount": 811,
"rev": "10f8d192fdcc7b4ac30ca3664434ee511b403a78",
"revCount": 816,
"type": "git",
"url": "https://gitea.esotericbytes.com/Blunkall-Technologies/Olympus"
},

View File

@@ -12,8 +12,8 @@
};
olympus = {
url = "git+https://gitea.esotericbytes.com/Blunkall-Technologies/Olympus";
#url = "git+file:///home/nathan/Projects/Olympus";
#url = "git+https://gitea.esotericbytes.com/Blunkall-Technologies/Olympus";
url = "git+file:///home/nathan/Projects/Olympus";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};

View File

@@ -1,4 +1,4 @@
{ config, lib, pkgs, inputs, ... }: {
{ config, lib, pkgs, nix-minecraft, ... }: {
options.sysconfig.services.minecraft.enable = lib.options.mkOption {
type = lib.types.bool;
@@ -6,12 +6,12 @@
};
imports = [
inputs.nix-minecraft.nixosModules.minecraft-servers
nix-minecraft.nixosModules.minecraft-servers
];
config = lib.mkIf config.sysconfig.services.minecraft.enable {
nixpkgs.overlays = [ inputs.nix-minecraft.overlay ];
nixpkgs.overlays = [ nix-minecraft.overlay ];
services.minecraft-servers = {