diff options
| author | Dominik Kaiser | 2025-08-16 16:32:35 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2025-08-16 16:32:35 +0200 |
| commit | 04db2acaa83c7cee7c876819655466f980ecdfc3 (patch) | |
| tree | 15e3c91b20d112b93dd055ba556c582cd4ee942b /hosts/sol/configuration.nix | |
| parent | 35babb758ca0ddb0953f07fcfd1c0ebb004ebfb9 (diff) | |
| download | nixos-04db2acaa83c7cee7c876819655466f980ecdfc3.tar.gz nixos-04db2acaa83c7cee7c876819655466f980ecdfc3.zip | |
Change nofile limits
Diffstat (limited to 'hosts/sol/configuration.nix')
| -rw-r--r-- | hosts/sol/configuration.nix | 10 |
1 files changed, 10 insertions, 0 deletions
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; |
