use sandboxed bottles instead of lutris

This commit is contained in:
Christoph Cullmann 2025-04-01 21:56:13 +02:00
parent 57b4572989
commit 9344fcb656
No known key found for this signature in database
4 changed files with 3 additions and 41 deletions

View file

@ -54,27 +54,6 @@ in
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
};
#
# sandbox for lutris games and Co.
#
users.sandbox-games = {
# home on persistent volume
home = "/data/home/sandbox-games";
# hard code UID for stability over machines
# out of range of normal login users
uid = 32000;
# normal user
isNormalUser = true;
# sandbox user
description = "Sandbox Games";
# use fixed auth keys
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
};
#
# sandbox for kde development
#
@ -151,19 +130,6 @@ in
};
};
# games user with extra settings
users.sandbox-games = {
# shared config
imports = [ ./home.nix ];
# install gaming stuff
home.packages = with pkgs; [
lutris
wineWowPackages.stable
winetricks
];
};
# kde user with extra settings
users.sandbox-kde = {
# shared config