home-manager/horsch/home.nix

41 lines
631 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 = [
./bat.nix
./carapace.nix
./direnv.nix
./eza.nix
./fzf.nix
./git.nix
./gpg
./neovim
./picocom.nix
./podman.nix
./ripgrep.nix
./rsync.nix
./shell_aliases.nix
./ssh.nix
./starship.nix
./tree.nix
./zoxide.nix
./zsh.nix
];
}