nixos/hosts/perso-home/home.nix
Florian RICHER 4ac1e0627d
Some checks failed
check / check (push) Failing after 0s
hosts: Remove unused imports
2024-10-28 21:20:06 +01:00

20 lines
255 B
Nix

{ ... }:
{
imports = [
../../modules/home
];
modules.home = {
apps = {
kitty.enable = true;
};
shell = {
zsh.enable = true;
atuin.enable = true;
direnv.enable = true;
git.enable = true;
};
};
}