mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29: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
|
||||
networking.firewall.allowedUDPPorts = [67];
|
||||
|
||||
users.users = {
|
||||
# allow container access to zvol
|
||||
container.extraGroups = ["disk"];
|
||||
users = {
|
||||
groups.container = {};
|
||||
users = {
|
||||
# allow container access to zvol
|
||||
container = {
|
||||
isSystemUser = true;
|
||||
group = "container";
|
||||
extraGroups = ["disk"];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue