diff options
| author | seth <[email protected]> | 2024-10-27 02:39:07 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-10-27 02:39:07 -0400 |
| commit | 9415ea9c61f8f416c133e7c7b55e5e29a9815db0 (patch) | |
| tree | 02721543b10cbc1628585e9ad3606845a82bad6d /users/seth/base/standalone.nix | |
| parent | e5d9afd7e0bc94f040132277c24361a2de6f3b5b (diff) | |
seth: cleanup `base` submodule
Diffstat (limited to 'users/seth/base/standalone.nix')
| -rw-r--r-- | users/seth/base/standalone.nix | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/users/seth/base/standalone.nix b/users/seth/base/standalone.nix deleted file mode 100644 index 884d3cc..0000000 --- a/users/seth/base/standalone.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: -let - cfg = config.seth.standalone; - enable = config.seth.enable && cfg.enable; -in -{ - options.seth.standalone = { - enable = lib.mkEnableOption "standalone configuration options"; - }; - - config = lib.mkIf enable { - _module.args.osConfig = { }; - programs.home-manager.enable = true; - - home = { - username = "seth"; - homeDirectory = - if pkgs.stdenv.isDarwin then "/Users/${config.home.username}" else "/home/${config.home.username}"; - }; - }; -} |
