pinwheel: Disable autoscroll in firefox

This commit is contained in:
Alexander Heldt
2023-09-09 10:01:45 +02:00
parent fa3c511fa5
commit 2cd8eabdda

View File

@@ -32,6 +32,10 @@ let
${wrapped}/bin/firefox -p ${wrapped}/bin/firefox -p
''; '';
}; };
sharedSettings = {
"general.autoscroll" = false;
};
in in
{ {
home-manager.users.alex = { home-manager.users.alex = {
@@ -44,16 +48,19 @@ in
alex = { alex = {
id = 0; id = 0;
name = "alex"; name = "alex";
settings = sharedSettings // {};
}; };
work = { work = {
id = 1; id = 1;
name = "work"; name = "work";
settings = sharedSettings // {};
}; };
}; };
}; };
home.packages = [ ff ]; home.packages = [ ff ];
}; };
} }