From 549c768248ef97f2952ade8f4f98abde04424726 Mon Sep 17 00:00:00 2001 From: emilylange Date: Sun, 1 Feb 2026 22:33:51 +0100 Subject: [PATCH] nixos/unity3d: remove since the corresponding package was removed too This should have had happened in 2022 when pkgs.unity3d was removed from nixpkgs in 4161b3d11f1749122fe71ffa670a4b5a45caf625. --- nixos/modules/rename.nix | 5 +++++ nixos/modules/security/chromium-suid-sandbox.nix | 7 ------- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index f3fcf6055946..49faf2ac6798 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -109,6 +109,11 @@ in consider using `programs.pay-respects` instead. '') (mkRemovedOptionModule [ "programs" "tilp2" ] "The corresponding package was removed from nixpkgs.") + (mkRemovedOptionModule [ + "programs" + "unity3d" + "enable" + ] "The corresponding package was removed from nixpkgs in 2022.") (mkRemovedOptionModule [ "programs" "way-cooler" ] ( "way-cooler is abandoned by its author: " + "https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html" diff --git a/nixos/modules/security/chromium-suid-sandbox.nix b/nixos/modules/security/chromium-suid-sandbox.nix index 5d7bc3269b68..a84ea02752c0 100644 --- a/nixos/modules/security/chromium-suid-sandbox.nix +++ b/nixos/modules/security/chromium-suid-sandbox.nix @@ -9,13 +9,6 @@ let sandbox = pkgs.chromium.sandbox; in { - imports = [ - (lib.mkRenamedOptionModule - [ "programs" "unity3d" "enable" ] - [ "security" "chromiumSuidSandbox" "enable" ] - ) - ]; - options.security.chromiumSuidSandbox.enable = lib.mkOption { type = lib.types.bool; default = false;