summaryrefslogtreecommitdiff
path: root/machines/git/home.nix
diff options
context:
space:
mode:
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";
-}