nixos/config/hyprland.nix
2026-05-10 11:37:33 +01:00

37 lines
731 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
services.gnome.gnome-keyring.enable = true;
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
btop
tesseract #ocr
gnome-calculator
gnome-font-viewer
];
services.udisks2.enable = true; # udiskie automount USB
}