43 lines
660 B
Nix
43 lines
660 B
Nix
{ pkgs, user, ... }:
|
|
|
|
{
|
|
home.username = user;
|
|
home.homeDirectory = "/home/${user}";
|
|
|
|
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
|
|
./starship.nix
|
|
./tree.nix
|
|
./zoxide.nix
|
|
./zsh.nix
|
|
|
|
./horsch/ssh.nix
|
|
./horsch/zsh.nix
|
|
];
|
|
}
|