Several hyprland updates:

plugins, new cursor, light/dark themes, new app launcher, ...
This commit is contained in:
Miguel Palhas
2026-02-16 17:33:40 +00:00
parent 48225afa6d
commit e8086e8528
48 changed files with 1436 additions and 290 deletions
+31
View File
@@ -0,0 +1,31 @@
{ inputs, pkgs, ... }:
let
sddm-astronaut-theme = pkgs.callPackage ../../../../pkgs/sddm-astronaut-theme/package.nix { };
in
{
services.xserver = {
enable = true;
displayManager = {
startx.enable = true;
};
autoRepeatDelay = 250;
autoRepeatInterval = 30;
};
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
theme = "sddm-astronaut-theme";
package = pkgs.kdePackages.sddm;
extraPackages = with pkgs.kdePackages; [
qtmultimedia
qtsvg
qtvirtualkeyboard
qt5compat
];
};
environment.systemPackages = with pkgs; [
sddm-astronaut-theme
];
}