summaryrefslogtreecommitdiff
path: root/users/seth/darwin.nix
blob: e2c59c89e153ed75e2786ba74a0f16b9ee0c8bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  config,
  lib,
  ...
}: let
  cfg = config.traits.users.seth;
in {
  imports = [./system.nix];

  config = lib.mkMerge [
    (lib.mkIf cfg.enable {
      home-manager.users.seth = {
        seth.desktop.enable = false;
      };
    })
  ];
}