Files
nixos-config/modules/home/default.nix
Christoph Schmatzler 8bd245d495 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-08-16 18:28:40 +00:00

38 lines
582 B
Nix

{
pkgs,
constants,
...
}: {
imports = [
./atuin.nix
./bat.nix
./eza.nix
./fish.nix
./git.nix
./lazygit.nix
./mise.nix
./neovim
./ripgrep.nix
./ssh.nix
./starship.nix
./zellij.nix
./zoxide.nix
./zsh.nix
];
programs.home-manager.enable = true;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
home = {
packages = pkgs.callPackage ../packages.nix {};
stateVersion = constants.stateVersions.homeManager;
shellAliases = {
v = "nvim";
lg = "lazygit";
};
};
}