This commit is contained in:
2025-08-16 14:46:16 +02:00
parent 8d4ea15585
commit 88bcacf521
33 changed files with 53 additions and 41 deletions

36
modules/home/default.nix Normal file
View File

@@ -0,0 +1,36 @@
{
pkgs,
constants,
...
}: {
imports = [
./fish.nix
./starship.nix
./zsh.nix
./atuin.nix
./bat.nix
./eza.nix
./git.nix
./lazygit.nix
./mise.nix
./ssh.nix
./zellij.nix
./zoxide.nix
./neovim
];
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";
};
};
}