From bc7e8c636b7d8830a10fdf9dd7278ea99103c222 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Mon, 7 May 2018 11:36:12 +0200 Subject: [PATCH] Sudo avec insultes --- configuration.nix | 1 + overlays/sudo.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 overlays/sudo.nix diff --git a/configuration.nix b/configuration.nix index f8fd424..0a58215 100644 --- a/configuration.nix +++ b/configuration.nix @@ -40,6 +40,7 @@ (import ./overlays/riot-web.nix) (import ./overlays/lidarr.nix) (import ./overlays/organizr.nix) + (import ./overlays/sudo.nix) ]; environment.systemPackages = with pkgs; [ neovim diff --git a/overlays/sudo.nix b/overlays/sudo.nix new file mode 100644 index 0000000..229ad6e --- /dev/null +++ b/overlays/sudo.nix @@ -0,0 +1,6 @@ +self: super: +{ + sudo = super.sudo.override { + withInsults = true; + }; +}