This commit is contained in:
Robin
2026-04-01 07:45:17 +02:00
commit fe27dff192
11 changed files with 733 additions and 0 deletions

15
custom/hyprland.nix Normal file
View File

@@ -0,0 +1,15 @@
{ 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;
};
}