try hyprland instead

This commit is contained in:
2025-01-16 21:26:48 +01:00
parent 03784c606c
commit b22e6ccc91
10 changed files with 1147 additions and 53 deletions

View File

@@ -0,0 +1,35 @@
{
config,
lib,
pkgs,
...
}:
{
programs.uwsm.enable = true;
programs.hyprland = {
enable = true;
xwayland.enable = false;
withUWSM = true;
};
# launch hyprland on login
# systemd.services.hyprland = {
# description = "Hyprland";
# wantedBy = [ "graphical.target" ];
# after = [ "display-manager.service" ];
# serviceConfig = {
# Type = "simple";
# ExecStart = "${pkgs.hyprland}/bin/hyprland";
# Restart = "always";
# RestartSec = "5";
# User = config.var.username;
# };
# };
environment.systemPackages = with pkgs; [
waybar
];
}