home-manager/horsch/home.nix

41 lines
645 B
Nix
Raw Normal View History

2024-07-10 06:17:30 +00:00
{ pkgs, user, ... }:
2024-07-10 06:10:56 +00:00
{
2024-07-10 06:17:30 +00:00
home.username = user;
home.homeDirectory = "/home/${user}";
2024-07-10 06:10:56 +00:00
home.stateVersion = "24.05"; # Please read the comment before changing.
home.sessionVariables = {
EDITOR = "nvim";
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
wsl-open
xdg-utils
];
imports = [
2024-07-10 06:28:44 +00:00
../bat.nix
../carapace.nix
../direnv.nix
../eza.nix
../fzf.nix
2024-07-10 10:37:49 +00:00
../git.nix
../picocom.nix
../podman.nix
2024-07-10 10:49:11 +00:00
../ripgrep.nix
2024-07-10 10:42:04 +00:00
../rsync.nix
2024-07-10 10:42:59 +00:00
../shell_aliases.nix
2024-07-10 10:49:11 +00:00
../starship.nix
2024-07-10 10:41:47 +00:00
../tree.nix
2024-07-10 10:49:11 +00:00
../zoxide.nix
./gpg
./neovim
./ssh.nix
2024-07-10 06:10:56 +00:00
./zsh.nix
];
}