home-manager/horsch/home.nix

41 lines
639 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
../ripgrep.nix
../starship.nix
../zoxide.nix
2024-07-10 06:10:56 +00:00
./git.nix
./gpg
./neovim
./picocom.nix
./podman.nix
./rsync.nix
./shell_aliases.nix
./ssh.nix
./tree.nix
./zsh.nix
];
}