summaryrefslogtreecommitdiff
path: root/modules/darwin/users/seth.nix
blob: 44eb4d3104409605be0721a54f2fa4f56d81671f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, ... }:

let
  cfg = config.borealis.users.seth;
in

{
  config = lib.mkMerge [
    (lib.mkIf cfg.enable {
      home-manager.users.seth = {
        # NOTE: this module is for linux, not mac
        seth.desktop.enable = false;
      };
    })
  ];
}