This commit is contained in:
Miguel Palhas
2025-06-29 14:50:36 +01:00
parent 855b54e0c2
commit 0f2a209c52
7 changed files with 36 additions and 10 deletions
+15 -9
View File
@@ -1,15 +1,21 @@
{ inputs, pkgs, ... }:
let hyprland-session = pkgs.makeDesktopItem {
name = "Hyprland";
comment = "Hyprland (custom desktop file)";
desktopNames = "Hyprland";
exec = "Hyprland";
type = "Application";
};
let
hyprland-session = pkgs.makeDesktopItem {
name = "Hyprland";
comment = "Hyprland (custom desktop file)";
desktopNames = "Hyprland";
exec = "Hyprland";
type = "Application";
};
in
{
services.xserver.enable = true;
services.xserver.displayManager.startx.enable = true;
services.xserver = {
enable = true;
displayManager.startx.enable = true;
autoRepeatDelay = 250;
autoRepeatInterval = 30;
};
# services.xserver.displayManager.sessionPackages = [ hyprland-session ];
# services.xserver.windowManager.gnome.enable = true;