This commit is contained in:
lsoriano-mcm
2025-06-23 16:27:29 -05:00
parent 1d5dd8ac1f
commit e8e7b3dd4f
4 changed files with 12 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
pkgs,
inputs,
...
}: {
environment.systemPackages = with pkgs; [
wl-clipboard
hypridle
hyprlock
];
programs.hyprland = {
enable = true;
# package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
# portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
hardware = {
graphics.enable = true;
};
services = {
# displayManager.sddm.wayland = true;
displayManager.gdm.enable = true;
};
}