summaryrefslogtreecommitdiff
path: root/modules/home-manager.nix
blob: c485dd99e260eb0b8c85b5553627cee273b1998e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, ... }:

with lib;

{
  options = {
    home-manager.enableSystemd = mkOption {
      type = types.bool;
      default = true;
      example = true;
      description = ''
        Are we using home-manager version that starts late as systemd user service?
      '';
    };
  };
}