mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: sync
This commit is contained in:
parent
62a07510f9
commit
dc9e30075d
2 changed files with 13 additions and 5 deletions
|
|
@ -51,8 +51,15 @@ _: {
|
||||||
# Allow inbound traffic for the DHCP server
|
# Allow inbound traffic for the DHCP server
|
||||||
networking.firewall.allowedUDPPorts = [67];
|
networking.firewall.allowedUDPPorts = [67];
|
||||||
|
|
||||||
users.users = {
|
users = {
|
||||||
|
groups.container = {};
|
||||||
|
users = {
|
||||||
# allow container access to zvol
|
# allow container access to zvol
|
||||||
container.extraGroups = ["disk"];
|
container = {
|
||||||
|
isSystemUser = true;
|
||||||
|
group = "container";
|
||||||
|
extraGroups = ["disk"];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
#! /usr/bin/env bash
|
#! /usr/bin/env bash
|
||||||
steam-run env WINEPREFIX="$STEAM_DIR/steamapps/compatdata/620980/pfx" bs-manager
|
#WINEPREFIX="$STEAM_DIR/steamapps/compatdata/620980/pfx"
|
||||||
|
steam-run bs-manager
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue