summaryrefslogtreecommitdiff
path: root/modules/home.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-18 21:59:30 -0600
committerChristian <[email protected]>2026-01-18 22:05:15 -0600
commit152de38181eca203c939ba2a5d50e0d76d522dc8 (patch)
tree778df5e34d6ab1db1c2eea08e893f7a2045ce4fa /modules/home.nix
parent875c8e5d08e463322e44bf66e8a5d4caa562bd4f (diff)
Restructure
Diffstat (limited to 'modules/home.nix')
-rw-r--r--modules/home.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/home.nix b/modules/home.nix
deleted file mode 100644
index f844fee..0000000
--- a/modules/home.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, pkgs, inputs, ... }:
-{
- imports = [ ./home/nvim.nix ];
-
- 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;
-}