summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorParnell Springmeyer <parnell@awakenetworks.com>2016-09-01 19:22:37 -0500
committerParnell Springmeyer <parnell@awakenetworks.com>2016-09-01 19:22:37 -0500
commit849dcde2a53398f91ab1da9adedcf65616c4e6ef (patch)
tree5416baadc60f6fb7ca48b4ec4fd8473c08731e5a /nixos/modules/programs
parent98c058a1ee338731d72d33f320da48c95fecd0e0 (diff)
downloadnixlib-849dcde2a53398f91ab1da9adedcf65616c4e6ef.tar
nixlib-849dcde2a53398f91ab1da9adedcf65616c4e6ef.tar.gz
nixlib-849dcde2a53398f91ab1da9adedcf65616c4e6ef.tar.bz2
nixlib-849dcde2a53398f91ab1da9adedcf65616c4e6ef.tar.lz
nixlib-849dcde2a53398f91ab1da9adedcf65616c4e6ef.tar.xz
nixlib-849dcde2a53398f91ab1da9adedcf65616c4e6ef.tar.zst
nixlib-849dcde2a53398f91ab1da9adedcf65616c4e6ef.zip
Wonder why this wasn't removed in the rebase?
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/unity3d.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/nixos/modules/programs/unity3d.nix b/nixos/modules/programs/unity3d.nix
deleted file mode 100644
index 47f1d1ef1600..000000000000
--- a/nixos/modules/programs/unity3d.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let cfg = config.programs.unity3d;
-in {
-
-  options = {
-    programs.unity3d.enable = mkEnableOption "Unity3D, a game development tool";
-  };
-
-  config = mkIf cfg.enable {
-    security.permissionsWrappers.setuid = [{
-      program = "unity-chrome-sandbox";
-      source = "${pkgs.unity3d.sandbox}/bin/unity-chrome-sandbox";
-      owner = "root";
-      #group = "root";
-      setuid = true;
-      #setgid = true;
-    }];
-
-    environment.systemPackages = [ pkgs.unity3d ];
-  };
-
-}