33 lines
588 B
Nix
33 lines
588 B
Nix
{ config, lib, pkgs, self, ... }:
|
|
|
|
{
|
|
programs.hyprland.enable = true;
|
|
programs.hyprland.withUWSM = true;
|
|
# Optional, hint electron apps to use wayland:
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
|
|
programs.hyprlock.enable = true;
|
|
services.hypridle.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
ghostty
|
|
|
|
waybar
|
|
swww
|
|
grim
|
|
slurp
|
|
wl-clipboard
|
|
brightnessctl
|
|
helvum
|
|
vicinae
|
|
playerctl
|
|
swaynotificationcenter
|
|
hyprshot
|
|
matugen
|
|
glib
|
|
hyprshade
|
|
hyprpolkitagent
|
|
];
|
|
|
|
programs.ssh.startAgent = true;
|
|
}
|