framework: gruvbox again, fix mouse accel

This commit is contained in:
tristan 2025-07-08 15:51:01 +01:00
parent 823b45d557
commit f6c272f35e
2 changed files with 11 additions and 11 deletions

View file

@ -6,12 +6,13 @@
...
}: let
inherit (config.lib.cosmic) mkRON;
mkAction = variant: action: mkRON "enum" {
inherit variant;
value = [
(mkRON "enum" action)
];
};
mkAction = variant: action:
mkRON "enum" {
inherit variant;
value = [
(mkRON "enum" action)
];
};
in {
imports = [inputs.cosmic-manager.homeManagerModules.cosmic-manager];
wayland.desktopManager.cosmic = {
@ -34,8 +35,8 @@ in {
compositor = {
autotile = true;
focus_follows_cursor = true;
input_default = mkRON "optional" {
profile = (mkRON "optional" (mkRON "enum" "Flat"));
input_default.acceleration = mkRON "optional" {
profile = mkRON "optional" (mkRON "enum" "Flat");
speed = 0.0;
};
};
@ -49,7 +50,7 @@ in {
sampling_method = mkRON "enum" "Alphanumeric";
scaling_mode = mkRON "enum" "Zoom";
source = mkRON "enum" {
value = [ (toString config.stylix.image) ];
value = [(toString config.stylix.image)];
variant = "Path";
};
}
@ -89,7 +90,5 @@ in {
size = mkRON "enum" "XS";
}
];
};
}