summaryrefslogtreecommitdiffstats
path: root/lass/2configs/ableton.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lass/2configs/ableton.nix')
-rw-r--r--lass/2configs/ableton.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/lass/2configs/ableton.nix b/lass/2configs/ableton.nix
deleted file mode 100644
index 9d6f481b..00000000
--- a/lass/2configs/ableton.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ 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
- '';
-}