Nix configurations for my homelab
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Put files into nix store to reduce unncessary service restarts

yemou 196ebe1f 68483e70

+12 -12
+12 -12
modules/services/minecraft/yembina/default.nix
··· 59 59 }; 60 60 files = { 61 61 "config" = "${modpack}/config"; 62 - "config/BlossomMods/BlossomBack.json" = ./BlossomMods/BlossomBack.json; 63 - "config/carryon-common.json" = ./carryon-common.json; 64 - "config/cobblemon_smartphone.json" = ./cobblemon_smartphone.json; 65 - "config/cobblemonsizevariation/config.json" = ./cobblemon-size-variation.json; 66 - "config/fightorflight.json5" = ./fightorflight.json5; 67 - "config/mega_showdown/config.json" = ./mega_showdown/config.json; 68 - "config/rctmod-server.toml" = ./rctmod-server.toml; 69 - "config/rightclickharvest.json5" = ./rightclickharvest.json5; 70 - "config/toughasnails/temperature.toml" = ./toughasnails/temperature.toml; 71 - "config/toughasnails/thirst.toml" = ./toughasnails/thirst.toml; 72 - "config/treeharvester.json5" = ./treeharvester.json5; 73 - "config/voicechat/voicechat-server.properties" = ./voicechat-server.properties; 62 + "config/BlossomMods/BlossomBack.json" = "${./BlossomMods/BlossomBack.json}"; 63 + "config/carryon-common.json" = "${./carryon-common.json}"; 64 + "config/cobblemon_smartphone.json" = "${./cobblemon_smartphone.json}"; 65 + "config/cobblemonsizevariation/config.json" = "${./cobblemon-size-variation.json}"; 66 + "config/fightorflight.json5" = "${./fightorflight.json5}"; 67 + "config/mega_showdown/config.json" = "${./mega_showdown/config.json}"; 68 + "config/rctmod-server.toml" = "${./rctmod-server.toml}"; 69 + "config/rightclickharvest.json5" = "${./rightclickharvest.json5}"; 70 + "config/toughasnails/temperature.toml" = "${./toughasnails/temperature.toml}"; 71 + "config/toughasnails/thirst.toml" = "${./toughasnails/thirst.toml}"; 72 + "config/treeharvester.json5" = "${./treeharvester.json5}"; 73 + "config/voicechat/voicechat-server.properties" = "${./voicechat-server.properties}"; 74 74 }; 75 75 }; 76 76 }