blob: 68457b05811db7219a7d80ad0726a682cb4aba41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wineUnstable
];
users.extraUsers = {
wine = {
name = "wine";
description = "user for running wine";
home = "/home/wine";
useDefaultShell = true;
extraGroups = [];
createHome = true;
};
};
security.sudo.extraConfig = ''
lass ALL=(wine) NOPASSWD: ALL
'';
}
|