aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/modules/workstation/ui/dpi/default.nix
blob: 69cb37766f0955c2f160836330d11e89be20be86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, ... }:

with lib;
{
  options.libkookie.ui.dpi = mkOption {
    type = types.float;
    default = 1.0;
    description = ''
      Override the default DPI scale for text on a system.  By default
      this value is set to 1.0, meaning that an application _or_ a
      display manager will set the font size for you.  By overriding
      this setting it is possible to increase text size that is too
      small by default.
    '';
  };
}