41 lines
628 B
Nix
41 lines
628 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.username = "mmandl";
|
||
|
home.homeDirectory = "/home/mmandl";
|
||
|
|
||
|
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
|
||
|
];
|
||
|
}
|