nix-files/helpers/gui/phosh.nix
colin 94aeb0eebb phosh: update scale to 1.5
this should have been done earlier, but got lost in some orphaned commit
2022-06-01 16:16:34 -07:00

20 lines
389 B
Nix

{ ... }:
{
services.xserver.desktopManager.phosh = {
enable = true;
user = "colin";
group = "users";
phocConfig = {
# find default outputs by catting /etc/phosh/phoc.ini
outputs.DSI-1 = {
scale = 1.5;
};
};
};
environment.variables = {
# Qt apps won't always start unless this env var is set
QT_QPA_PLATFORM = "wayland";
};
}