summaryrefslogtreecommitdiff
path: root/users/seth/module/base/default.nix
blob: b6c75714009300cc6336e98b0bc5685f1808b796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  config,
  lib,
  ...
}: let
  cfg = config.seth;
in {
  options.seth = {
    enable = lib.mkEnableOption "Seth's home configuration";
  };

  imports = [
    ./standalone.nix
  ];

  config = lib.mkIf cfg.enable {
    home.stateVersion = "23.11";
  };
}