nixos/config/hyprland.nix
2026-05-23 00:31:58 +01:00

39 lines
806 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"
bluetui # bluetooth
wiremix # mixer
tesseract # ocr
hyprpicker
satty # image annotation
# gnome stuff
gnome-calculator
nautilus
gnome-font-viewer
gnome-calendar
];
services.udisks2.enable = true; # udiskie automount USB
}