nixos/hosts/pro-home/home.nix
Florian RICHER a845073dcc
All checks were successful
check / check (push) Successful in 44s
add pro-home
2025-06-26 11:17:43 +02:00

15 lines
182 B
Nix

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