mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +01:00
23 lines
418 B
Nix
23 lines
418 B
Nix
{config, pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
mako
|
|
grim
|
|
slurp
|
|
wl-clipboard
|
|
xdg-utils
|
|
sway-contrib.grimshot
|
|
];
|
|
|
|
services.gnome.gnome-keyring.enable = true;
|
|
programs.sway = {
|
|
enable = true;
|
|
wrapperFeatures.gtk = true;
|
|
};
|
|
|
|
xdg.portal.wlr.enable = true;
|
|
security.pam.loginLimits = [
|
|
{ domain = "@users"; item = "rtprio"; type = "-"; value = 1; }
|
|
];
|
|
|
|
}
|