summaryrefslogtreecommitdiff
path: root/machines/git/home.nix
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-10-12 11:23:58 -0400
committerRaghuram Subramani <raghus2247@gmail.com>2025-10-12 11:24:13 -0400
commit57de4ede0cef89c04a3728e4f8c97f67ce771eff (patch)
treed183069bc9b8f93f429763ec35e1beb5abd8bc4c /machines/git/home.nix
parent607c7626001ba1ba4f0b8b4b4b774b508143cab5 (diff)
generalize server
Diffstat (limited to 'machines/git/home.nix')
-rw-r--r--machines/git/home.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/machines/git/home.nix b/machines/git/home.nix
deleted file mode 100644
index 723879e..0000000
--- a/machines/git/home.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ inputs, pkgs, ... }:
-
-{
- home = {
- username = "compromyse";
- homeDirectory = "/home/compromyse";
- };
-
- home.packages = with pkgs; [
- git-lfs
- ];
-
- imports = (map (path: ../../config/${path}) [
- "bash.nix"
- "git"
- "nvim"
- ]);
-
- home.stateVersion = "23.11";
-}