29 lines
611 B
Nix
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
|
|
|
|
} |