fix relative paths
This commit is contained in:
parent
42b5b3cd96
commit
58361cd8f6
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, options, pkgs, ... }:
|
||||
with lib;
|
||||
let
|
||||
luckperms = pkgs.callPackage ../packages/minecraft/luckperms.nix { };
|
||||
luckperms = pkgs.callPackage ../../packages/minecraft/luckperms.nix { };
|
||||
cfg = config.services.minecraft.luckperms;
|
||||
opt = options.services.minecraft.luckperms;
|
||||
in
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, options, pkgs, ... }:
|
||||
with lib;
|
||||
let
|
||||
papermc = pkgs.callPackage ../packages/minecraft/paper.nix { };
|
||||
papermc = pkgs.callPackage ../../packages/minecraft/paper.nix { };
|
||||
cfg = config.services.minecraft;
|
||||
opt = options.services.minecraft;
|
||||
serverProperties = pkgs.writeText "server.properties" ''
|
||||
|
|
Loading…
Reference in a new issue