diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-11 21:06:44 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-12 00:52:18 +0900 |
| commit | 04e6bc3c5c99d6a99f17cfa5f69f34fe8941aee2 (patch) | |
| tree | 2ad64307c13e2f967fdf17c5f02e7682189b22e1 /test/configuration.nix | |
| parent | 5c540f90aa5ac069a370cbef0ddd81fa268b43c5 (diff) | |
hst: expose scheduling policy
This is primarily useful for poorly written music players for now.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'test/configuration.nix')
| -rw-r--r-- | test/configuration.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/configuration.nix b/test/configuration.nix index 5724ec4f..62d8239d 100644 --- a/test/configuration.nix +++ b/test/configuration.nix @@ -28,6 +28,15 @@ # Automatically login on tty1 as a normal user: services.getty.autologinUser = "alice"; + security.pam.loginLimits = [ + { + domain = "@users"; + item = "rtprio"; + type = "-"; + value = 1; + } + ]; + environment = { systemPackages = with pkgs; [ # For D-Bus tests: |
