Update home-manager configs to latest version

This commit is contained in:
Johannes Rothe 2024-06-17 22:16:43 +02:00
parent aac875116e
commit c4c3cb208a

View File

@ -264,17 +264,17 @@
# Automatic display output management # Automatic display output management
services.kanshi = { services.kanshi = {
enable = true; enable = true;
profiles = { settings = [
undocked = { { profile.name = "undocked";
outputs = [ profile.outputs = [
{ {
criteria = "eDP-1"; criteria = "eDP-1";
status = "enable"; status = "enable";
} }
]; ];
}; }
home_office = { { profile.name = "home_office";
outputs = [ profile.outputs = [
{ {
criteria = "eDP-1"; criteria = "eDP-1";
status = "disable"; status = "disable";
@ -284,9 +284,9 @@
status = "enable"; status = "enable";
} }
]; ];
}; }
office = { { profile.name = "office";
outputs = [ profile.outputs = [
{ {
criteria = "eDP-1"; criteria = "eDP-1";
status = "disable"; status = "disable";
@ -296,8 +296,8 @@
status = "enable"; status = "enable";
} }
]; ];
}; }
}; ];
}; };
services.swayidle = { services.swayidle = {
@ -328,6 +328,7 @@
wayland.windowManager.sway = { wayland.windowManager.sway = {
enable = true; enable = true;
checkConfig = false;
package = pkgs.sway; package = pkgs.sway;
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
config = let config = let