From 04db2acaa83c7cee7c876819655466f980ecdfc3 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Sat, 16 Aug 2025 16:32:35 +0200 Subject: [PATCH] Change nofile limits --- hosts/sol/configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/sol/configuration.nix b/hosts/sol/configuration.nix index 04d205c..4bcc946 100644 --- a/hosts/sol/configuration.nix +++ b/hosts/sol/configuration.nix @@ -55,6 +55,16 @@ #media-session.enable = true; }; musnix.enable = true; + services.systembus-notify.enable = true; + + security.pam.loginLimits = [ + { + domain = "dk"; + item = "nofile"; + type = "hard"; + value = "524288"; + } + ]; # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true; -- 2.47.2