nix-dotfiles/hosts/modules/hyprland.nix
alsaiduq-lab 32f925bb69 removed temp
cant get it to work, tried the PR but it still fails. at this point all
I can do is wait for a proper update (or revert but who wants to do
that)
2025-10-12 08:59:32 -06:00

61 lines
1.1 KiB
Nix

{
lib,
config,
pkgs,
...
}: {
services.xserver.enable = false;
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
services.greetd = {
enable = true;
package = pkgs.greetd.tuigreet;
settings.default_session = {
user = "greeter";
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --cmd ${pkgs.hyprland}/bin/Hyprland";
};
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [xdg-desktop-portal-hyprland xdg-desktop-portal-gtk];
config = {
common.default = ["gtk"];
hyprland.default = ["hyprland" "gtk"];
};
};
security.polkit.enable = true;
environment.systemPackages = with pkgs; [
qt5.qtwayland
qt6.qtwayland
candy-icons
hu-tao-animated-cursor
tokyonight-gtk-theme
hyprlock
wlogout
wl-clipboard
xclip
wofi
hyprshot
hypridle
hyprpolkitagent
grim-hyprland
slurp
swappy
satty
imv
syshud
hyprpaper
hyprpicker
nwg-look
gsimplecal
# hyprspace
kdePackages.xwaylandvideobridge
];
}