mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
30 lines
489 B
Nix
30 lines
489 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
mako
|
|
grim
|
|
slurp
|
|
wl-clipboard
|
|
xdg-utils
|
|
sway-contrib.grimshot
|
|
swaylock
|
|
swaynotificationcenter
|
|
];
|
|
|
|
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;
|
|
}
|
|
];
|
|
|
|
}
|