summaryrefslogtreecommitdiff
path: root/machines/v/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/v/home.nix')
-rw-r--r--machines/v/home.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/machines/v/home.nix b/machines/v/home.nix
deleted file mode 100644
index 201d8db..0000000
--- a/machines/v/home.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ pkgs, ... }:
-
-{
- nixpkgs.config.allowUnfree = true;
-
- home = {
- username = "vagrant";
- homeDirectory = "/home/vagrant";
- };
-
- home.packages = with pkgs; [
- wget
-
- tmux
- fzf
- fd
- ripgrep
-
- unzip
- zip
-
- pyright
- git-lfs
- ];
-
- programs.bash.initExtra = ''
- . "$HOME/.nix-profile/etc/profile.d/nix.sh"
- alias ls="ls --color=auto"
- '';
-
- imports = (map (path: ../../config/${path}) [
- "bash.nix"
- "dotfiles.nix"
- "git"
- "nvim"
- ]);
-
- home.stateVersion = "23.11";
- programs.home-manager.enable = true;
-}