aboutsummaryrefslogtreecommitdiff
path: root/custom.nix
blob: acc8f0eb788b72feb41b9fc67b3734b2d8f1ab87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

{
  options.custom = {
    hidpi = pkgs.lib.mkOption {
      type = pkgs.lib.types.bool;
      description = "Configure UI for high DPI displays";
    };

    tasks = pkgs.lib.mkOption {
      type = pkgs.lib.types.attrs;
    };
  };
}