-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(home-manager): GTK module bad linking from tweak default setting #270
Conversation
modules/home-manager/gtk.nix
Outdated
gtkTweaks = concatStringsSep "," ( | ||
map (tweak: { normal = "default"; }.${tweak} or tweak) cfg.tweaks | ||
map (tweak: { normal = "normal"; }.${tweak} or tweak) cfg.tweaks | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can just make this gtkTweaks = concatStringsSep "," cfg.tweaks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'd prefer this PR to be a simple revert of 92e2d7a, as that's basically what it is now
Could you please @isabelroses do the revert? |
Sure thing |
This PR fix this issue: #269
GTK module does not correctly define the configuration path due to an error in the mapping of the default option for tweak configuration.