summaryrefslogtreecommitdiff
path: root/modules/home/christian.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/christian.nix
parent152de38181eca203c939ba2a5d50e0d76d522dc8 (diff)
Rename file for potential future users
Diffstat (limited to 'modules/home/christian.nix')
-rw-r--r--modules/home/christian.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/home/christian.nix b/modules/home/christian.nix
new file mode 100644
index 0000000..461f273
--- /dev/null
+++ b/modules/home/christian.nix
@@ -0,0 +1,16 @@
+{ 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;
+}