summaryrefslogtreecommitdiff
path: root/users/seth/base/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/base/default.nix')
-rw-r--r--users/seth/base/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/users/seth/base/default.nix b/users/seth/base/default.nix
deleted file mode 100644
index 7b97b51..0000000
--- a/users/seth/base/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ 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"; };
-}