From cddfbd9953638dd513520d89782d7b7c8af6e7a4 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 17 Jul 2025 16:48:56 +0200 Subject: [PATCH 1/2] chore: disable sudo insults --- modules/core/security.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/security.nix b/modules/core/security.nix index 00d59d3..f95be92 100644 --- a/modules/core/security.nix +++ b/modules/core/security.nix @@ -27,7 +27,7 @@ } ]; - package = (pkgs.sudo.override { withInsults = true; }).overrideAttrs (old: { + package = (pkgs.sudo.override { withInsults = false; }).overrideAttrs (old: { postPatch = (old.postPatch or "") + '' From ed62441c04e9d166e3f29d4cf69f50d02a71c6ff Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 17 Jul 2025 16:49:11 +0200 Subject: [PATCH 2/2] chore: disable steam --- modules/core/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/default.nix b/modules/core/default.nix index 10428ec..36b87a6 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -16,6 +16,6 @@ ++ [ (import ./user.nix) ] ++ [ (import ./bluetooth.nix) ] ++ [ (import ./yubikey.nix) ] - ++ [ (import ./steam.nix) ] + # ++ [ (import ./steam.nix) ] ++ [ (import ./wayland.nix) ]; }