enable fractional scaling on gnome

This commit is contained in:
Cyryl Płotnicki 2023-01-12 09:28:19 +00:00
parent ca6c27538f
commit 655536bb6a

View file

@ -1,13 +1,16 @@
{
config,
pkgs,
...
}: {
services = {};
{ config, pkgs, ... }: {
services = { };
xsession = {enable = false;};
xsession = { enable = false; };
home.packages = with pkgs; [gnome-usage gnome3.gnome-tweaks];
home.packages = with pkgs; [ gnome-usage gnome3.gnome-tweaks ];
dconf.settings = {
"org/gnome/mutter" = {
# https://github.com/NixOS/nixpkgs/issues/114514#issuecomment-1177709271
experimental-features = [ "scale-monitor-framebuffer" ];
};
};
programs.gnome-terminal = {
enable = true;