summaryrefslogtreecommitdiff
path: root/modules/darwin/traits/users.nix
blob: 7ad74919280081214477e3767124c88c0310cd16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  config,
  lib,
  ...
}: let
  cfg = config.traits.users;
in {
  config = lib.mkMerge [
    (lib.mkIf cfg.seth.enable {
      home-manager.users.seth = {
        seth.desktop.enable = false;
      };
    })
  ];
}