enable fractional scaling on gnome
This commit is contained in:
parent
ca6c27538f
commit
655536bb6a
1 changed files with 11 additions and 8 deletions
|
@ -1,14 +1,17 @@
|
||||||
{
|
{ config, pkgs, ... }: {
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
services = { };
|
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 = {
|
programs.gnome-terminal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profile = {
|
profile = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue