16 lines
280 B
Nix
16 lines
280 B
Nix
{ config, pkgs, ... }: {
|
|
environment.systemPackages = (with pkgs; [
|
|
rofi
|
|
hyprcursor
|
|
swww
|
|
hyprland
|
|
hyprlock
|
|
hyprsunset
|
|
]);
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true; # recommended for most users
|
|
#xwayland.enable = true;
|
|
};
|
|
}
|