Compare commits

...

2 commits

Author SHA1 Message Date
0d4a597889
hyprland: fix pip
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
2023-06-30 16:59:51 -04:00
47cf5f068c
yuki: init minecraft 2023-06-30 16:59:27 -04:00
3 changed files with 15 additions and 1 deletions

View file

@ -101,7 +101,7 @@ _: {
#windowrules
windowrulev2 = noshadow, floating:0
windowrulev2 = float, title:^(Volume Control)$
windowrulev2 = float, title:^(Picture-in-Picture)$
windowrulev2 = float, title:^(Picture in picture)$
windowrulev2 = float, title:^(RuneLite)$
windowrulev2 = move 500 300, title:^(RuneLite)$
windowrulev2 = size 810 580, title:^(RuneLite)$

View file

@ -8,5 +8,6 @@
./homarr.nix
./dashdot.nix
./miniflux.nix
./minecraft.nix
];
}

View file

@ -0,0 +1,13 @@
{...}: {
networking.firewall.allowedTCPPorts = [25565];
virtualisation.oci-containers.containers.minecraft = {
image = "marctv/minecraft-papermc-server:latest";
ports = ["25565:25565"];
environment = {
MEMORYSIZE = "6G";
};
volumes = [
"/home/notoh/docker/mcserver:/data:rw"
];
};
}