nix-config/containers/wine.nix

55 lines
998 B
Nix
Raw Normal View History

{
nix-config,
config,
lib,
pkgs,
...
}:
let
2024-04-07 16:41:16 +02:00
inherit (nix-config.inputs.sakaya.packages.${pkgs.system}) sakaya;
inherit (config.modules.system) username;
2024-04-07 16:41:16 +02:00
inherit (lib) singleton getExe;
2024-04-07 18:28:56 +02:00
inherit (pkgs) su winetricks wineWowPackages;
sakayaPort = 39493;
in
{
modules.desktop.graphical = true;
networking.nat.forwardPorts = singleton {
destination = "192.168.100.49:${sakayaPort}";
sourcePort = sakayaPort;
};
networking.firewall.allowedTCPPorts = [ sakayaPort ];
systemd.services.sakaya = {
enable = true;
description = "sakaya server";
unitConfig = {
Type = "simple";
};
path = [ su ];
serviceConfig = {
2024-04-07 16:41:16 +02:00
ExecStart = "/usr/bin/env su ${username} --command=${getExe sakaya}";
};
wantedBy = [ "multi-user.target" ];
};
2024-04-07 18:28:56 +02:00
environment.systemPackages = [
wineWowPackages.waylandFull
winetricks
2024-04-07 18:28:56 +02:00
sakaya
];
environment.sessionVariables = {
LC_ALL = "ja_JP.UTF-8";
TZ = "Asia/Tokyo";
};
}