mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
17 lines
372 B
Nix
17 lines
372 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# https://wiki.archlinux.org/title/HiDPI#Wayland
|
|
# Results in blurry font in non-Wayland applications :/
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
|
dconf.settings = {
|
|
"org/gnome/mutter" = {
|
|
experimental-features = [ "scale-monitor-framebuffer" ];
|
|
};
|
|
};
|
|
};
|
|
}
|