Files
nixos-config/modules/home/default.nix
Christoph Schmatzler 52e3c9a177 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-08-21 07:16:11 +00:00

34 lines
503 B
Nix

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