nixos/hosts/perso-home/home.nix

21 lines
255 B
Nix
Raw Normal View History

2024-10-28 21:20:06 +01:00
{ ... }:
{
imports = [
../../modules/home
];
modules.home = {
apps = {
kitty.enable = true;
};
shell = {
zsh.enable = true;
atuin.enable = true;
direnv.enable = true;
git.enable = true;
};
};
}