diff options
author | nin <nin@c-base.org> | 2018-01-03 18:37:16 +0100 |
---|---|---|
committer | nin <nin@c-base.org> | 2018-01-03 18:37:16 +0100 |
commit | 54c58f207da33cac00602cdcfa5bfe5ef72fcb14 (patch) | |
tree | 3278c9fb4c5525c9fbed28a05aaea9ba8351c2c3 /lass/2configs | |
parent | 3e976918e64249a11cb433b587db094bb6105af3 (diff) | |
parent | 788cc63754e7dc4f559087ae37b74017e6b77d39 (diff) |
Merge branch 'master' of prism:stockholm
Diffstat (limited to 'lass/2configs')
-rw-r--r-- | lass/2configs/ableton.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lass/2configs/ableton.nix b/lass/2configs/ableton.nix new file mode 100644 index 000000000..9d6f481b0 --- /dev/null +++ b/lass/2configs/ableton.nix @@ -0,0 +1,20 @@ +{ config, pkgs, ... }: let + mainUser = config.users.extraUsers.mainUser; +in { + users.users= { + ableton = { + isNormalUser = true; + extraGroups = [ + "audio" + "video" + ]; + packages = [ + pkgs.wine + pkgs.winetricks + ]; + }; + }; + security.sudo.extraConfig = '' + ${mainUser.name} ALL=(ableton) NOPASSWD: ALL + ''; +} |