added niri config

This commit is contained in:
chloe 2025-04-19 11:42:22 +02:00
parent 2694935f92
commit 5642f166f0
3 changed files with 94 additions and 5 deletions

View file

@ -1,4 +1,5 @@
{config, pkgs, ...}: {
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
mako
grim
@ -11,14 +12,19 @@
];
services.gnome.gnome-keyring.enable = true;
programs.sway = {
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
xdg.portal.wlr.enable = true;
security.pam.loginLimits = [
{ domain = "@users"; item = "rtprio"; type = "-"; value = 1; }
];
{
domain = "@users";
item = "rtprio";
type = "-";
value = 1;
}
];
}
}