aboutsummaryrefslogtreecommitdiff
path: root/modules/user/desktop/default.nix
blob: 94ea29fb1c6c61c1fcb3e56bdf3a9c1a711a98af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, options, ... }:
{
  imports = [
    ./apps
    ./sessions
  ];

  options.desktop.defaultFontSize = lib.mkOption {
    default = 11.0;
    description = "The default font size used by some apps";
    type = lib.types.float;
  };
}