Files
nix/hosts/common/features/gnome-shell.nix
T
Miguel Palhas 61a357409b wip
2025-03-15 19:20:26 +00:00

12 lines
166 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnome-shell
];
environment.variables = {
GDK_SCALE = "2";
GDK_DPI_SCALE = "1.5";
};
}