Hyprland bug fixed; Hold in for plasma 6

This commit is contained in:
2026-05-08 10:42:30 +02:00
parent dc721a79bc
commit 788aff4158
6 changed files with 54 additions and 24 deletions
+3 -2
View File
@@ -18,7 +18,7 @@
./regreet.nix
./plymouth.nix
./audio.nix
./webcam.nix
# ./webcam.nix
./virt.nix
./catppuccin.nix
];
@@ -95,7 +95,7 @@
// lib.optionalAttrs (!isServer) {
dconf.enable = true;
hyprland = {
enable = true;
enable = false;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
};
steam.enable = true;
@@ -159,6 +159,7 @@
"video"
"audio"
"libvirtd"
"input"
];
};
}
+16 -1
View File
@@ -1,5 +1,6 @@
{
lib,
pkgs,
...
}:
{
@@ -13,7 +14,7 @@
};
programs.regreet = {
enable = true;
enable = false;
cageArgs = [
"-s"
@@ -63,4 +64,18 @@
};
};
};
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.tuigreet}/bin/tuigreet --cmd start-hyprland";
user = "greeter";
};
initial_session = {
command = "Hyprland";
user = "phil";
};
};
};
}