nixos/config/hyprland.nix
2026-05-10 00:03:59 +01:00

29 lines
611 B
Nix

{ pkgs, ...}:
{
programs.hyprland.enable = true;
security.pam.services.hyprlock = {};
#wifi
networking.wireless.iwd.enable = true;
services.gnome.sushi.enable = true; # image previews in nautilus
environment.systemPackages = with pkgs; [
glib # gsettings
gsettings-desktop-schemas # gsettings
dconf # gsettings
impala # wifi
grim # screenshots
slurp # screenshot selection
wl-clipboard # copy to clipboard
libnotify # enables "notify-send"
nautilus
bluetui # bluetooth
wiremix # mixer
];
services.udisks2.enable = true; # udiskie automount USB
}