summaryrefslogtreecommitdiff
path: root/modules/home/default.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-19 09:16:43 -0600
committerChristian <[email protected]>2026-01-19 09:16:43 -0600
commitd55e86917204dd7b2919eecb5e12861e22da9d16 (patch)
treebf44290723a041cd55ed24f9aff0578456b6b0c5 /modules/home/default.nix
parent152de38181eca203c939ba2a5d50e0d76d522dc8 (diff)
Rename file for potential future users
Diffstat (limited to 'modules/home/default.nix')
-rw-r--r--modules/home/default.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/home/default.nix b/modules/home/default.nix
deleted file mode 100644
index 461f273..0000000
--- a/modules/home/default.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, pkgs, inputs, ... }:
-{
- imports = [ ./nvim ];
-
- home.stateVersion = "25.11";
-
- home.packages = with pkgs; [ ];
-
- programs.git = {
- enable = true;
- settings.user.name = "Christian";
- settings.user.email = "[email protected]";
- };
-
- programs.home-manager.enable = true;
-}