From 28fcdafdd4b0e23798c6afe5cb7eb7aac099f38c Mon Sep 17 00:00:00 2001 From: kat witch Date: Mon, 3 May 2021 16:54:02 +0100 Subject: [PATCH] profiles/common: Immutable users --- profiles/common/nixos/system.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/profiles/common/nixos/system.nix b/profiles/common/nixos/system.nix index a5c635cc..b4bc2a8a 100644 --- a/profiles/common/nixos/system.nix +++ b/profiles/common/nixos/system.nix @@ -4,4 +4,5 @@ boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; boot.tmpOnTmpfs = true; services.journald.extraConfig = "SystemMaxUse=512M"; + users.mutableUsers = false; }