nixos/hosts/perso-desktop/home.nix
Florian RICHER 8e9f475e89
All checks were successful
check / check (push) Successful in 31s
Migrate to zen browser
2024-12-20 23:02:07 +01:00

23 lines
323 B
Nix

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