feat: installed noita proxy for eve and leyla users

This commit is contained in:
Leyla Becker 2025-11-26 21:52:17 -06:00
parent f660b601e2
commit 1d5bb9e945
5 changed files with 21 additions and 1 deletions

View file

@ -73,6 +73,7 @@ in {
tor-browser.enable = true;
olympus.enable = true;
libreoffice.enable = true;
noita-entangled-worlds.enable = true;
claude-code.enable = osConfig.host.ai.enable;

View file

@ -68,6 +68,7 @@ in {
qflipper.enable = true;
openvpn.enable = true;
noisetorch.enable = true;
noita-entangled-worlds.enable = true;
tor-browser.enable = true;
gdx-liftoff.enable = true;
})

View file

@ -88,7 +88,6 @@
environment.systemPackages = with pkgs; [
cachefilesd
webtoon-dl
noita_entangled_worlds
];
services.cachefilesd.enable = true;

View file

@ -31,6 +31,7 @@
./freecad.nix
./onionshare.nix
./mfoc.nix
./noita-entangled-worlds.nix
./pdfarranger.nix
./picard.nix
./qflipper.nix

View file

@ -0,0 +1,18 @@
{
lib,
pkgs,
config,
...
}: {
options = {
programs.noita-entangled-worlds = {
enable = lib.mkEnableOption "Noita Entangled Worlds multiplayer mod";
};
};
config = lib.mkIf config.programs.noita-entangled-worlds.enable {
home.packages = with pkgs; [
noita_entangled_worlds
];
};
}