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
Generated
+12 -12
View File
@@ -188,11 +188,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1778009629, "lastModified": 1778144356,
"narHash": "sha256-nUoQtf4Zq7DRYJrfv904hjrxjAlWVP6a1pNNFKx3FCg=", "narHash": "sha256-dGM+QCstz/DyLB68+JK5GWyMx4QSqmOJEVgZmy63d/g=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "00ed86e58bb6979a7921859fd1615d19382eac5c", "rev": "e4419d3123b780d5f4c0bceeace450424387638c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -301,11 +301,11 @@
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1777995176, "lastModified": 1778199997,
"narHash": "sha256-iq9W7sFoKFNFt0UAxRnnLVkbvNT+nJWsZQFNcWh/fCU=", "narHash": "sha256-vmCYnK7/iRQGWj+s0l3+cf/IVoUcCTrlFtgUCTwRdjU=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "a531c2ed6bb4cd4eb2c6cb51838cb07a37226377", "rev": "de9f8dc9831d921cd1ee30d5d14f45f0e345a8ca",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -561,11 +561,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1777492286, "lastModified": 1778179779,
"narHash": "sha256-PwuoEJQcjSKJNP5T55qhfDwIP0tw5zxEhfu8GDfKfeg=", "narHash": "sha256-Ri6rVf54CRD3aISHLhSY6H4tBScVjm9ebkv7rF2lcZM=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "hyprutils", "repo": "hyprutils",
"rev": "ec5c0c709706bad5b82f667fd8758eae442577ce", "rev": "3e170e5ad010602671f5f25b327e8bdb8fdd532c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -656,11 +656,11 @@
"nixpkgs-nixcord": "nixpkgs-nixcord" "nixpkgs-nixcord": "nixpkgs-nixcord"
}, },
"locked": { "locked": {
"lastModified": 1778058822, "lastModified": 1778202527,
"narHash": "sha256-iWK6mx+b9UeIrLCRC3tQMluI9TU093Q/q78/8LW7IHk=", "narHash": "sha256-Yn0A4iYFtVNYIf1IXfT1R7gYNbJ5UEqvExii2aK4VAY=",
"owner": "kaylorben", "owner": "kaylorben",
"repo": "nixcord", "repo": "nixcord",
"rev": "a88a9e39026c8456c9cbb130a794a37c358ef07d", "rev": "471c6da493cb642bbc941a4bc5c10c22595ed013",
"type": "github" "type": "github"
}, },
"original": { "original": {
+11 -8
View File
@@ -66,6 +66,11 @@ in
"XCURSOR_SIZE,24" "XCURSOR_SIZE,24"
]; ];
debug = {
disable_logs = false;
enable_stdout_logs = false;
};
monitor = [ monitor = [
"DP-1, 1920x1080@60, 1920x0, 1" "DP-1, 1920x1080@60, 1920x0, 1"
"HDMI-A-2, 1920x1080@60, 0x0, 1" "HDMI-A-2, 1920x1080@60, 0x0, 1"
@@ -73,8 +78,8 @@ in
input = { input = {
kb_layout = "de"; kb_layout = "de";
kb_variant = "mac"; kb_variant = "";
kb_options = "apple:fn_lock"; kb_options = "";
repeat_rate = 50; repeat_rate = 50;
repeat_delay = 300; repeat_delay = 300;
@@ -113,7 +118,6 @@ in
enabled = false; enabled = false;
range = 16; range = 16;
render_power = 4; render_power = 4;
ignore_window = true;
color = "$green"; color = "$green";
color_inactive = "$red"; color_inactive = "$red";
}; };
@@ -146,7 +150,6 @@ in
# ]; # ];
dwindle = { dwindle = {
pseudotile = "yes";
preserve_split = "yes"; preserve_split = "yes";
}; };
@@ -169,10 +172,10 @@ in
vrr = 0; vrr = 0;
}; };
device = { #device = {
name = "usb-optical-mouse-"; # name = "usb-optical-mouse-";
sensitivity = 0; # sensitivity = 0;
}; #};
#deprecated #deprecated
# windowrulev2 = [ # windowrulev2 = [
# "suppressevent maximize, class:.*" # "suppressevent maximize, class:.*"
-1
View File
@@ -42,6 +42,5 @@
}; };
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
}; };
system.stateVersion = "26.05"; system.stateVersion = "26.05";
} }
+12
View File
@@ -1,3 +1,4 @@
{ ... }:
{ {
imports = [ ./hardware-configuration.nix ]; imports = [ ./hardware-configuration.nix ];
@@ -32,5 +33,16 @@
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
}; };
services.desktopManager.plasma6.enable = false;
services.displayManager.sddm = {
enable = false;
wayland.enable = true;
};
environment.pathsToLink = [
"/share/applications"
"/share/xdg-desktop-portal"
];
system.stateVersion = "26.05"; system.stateVersion = "26.05";
} }
+3 -2
View File
@@ -18,7 +18,7 @@
./regreet.nix ./regreet.nix
./plymouth.nix ./plymouth.nix
./audio.nix ./audio.nix
./webcam.nix # ./webcam.nix
./virt.nix ./virt.nix
./catppuccin.nix ./catppuccin.nix
]; ];
@@ -95,7 +95,7 @@
// lib.optionalAttrs (!isServer) { // lib.optionalAttrs (!isServer) {
dconf.enable = true; dconf.enable = true;
hyprland = { hyprland = {
enable = true; enable = false;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
}; };
steam.enable = true; steam.enable = true;
@@ -159,6 +159,7 @@
"video" "video"
"audio" "audio"
"libvirtd" "libvirtd"
"input"
]; ];
}; };
} }
+16 -1
View File
@@ -1,5 +1,6 @@
{ {
lib, lib,
pkgs,
... ...
}: }:
{ {
@@ -13,7 +14,7 @@
}; };
programs.regreet = { programs.regreet = {
enable = true; enable = false;
cageArgs = [ cageArgs = [
"-s" "-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";
};
};
};
} }