blob: 5cb019c1332469ad4e747a7b8fa485e5a80d1fb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ config, pkgs, ... }:
let
mainUser = config.users.extraUsers.mainUser;
in {
users.users= {
wine = {
home = "/home/wine";
useDefaultShell = true;
extraGroups = [
"audio"
"video"
];
createHome = true;
packages = [
pkgs.wineMinimal
];
};
};
security.sudo.extraConfig = ''
${mainUser.name} ALL=(wine) NOPASSWD: ALL
'';
}
|