nixos/hosts/perso-laptop/home.nix
Florian RICHER 82fa667a6b
All checks were successful
check / check (push) Successful in 38s
perso-laptop: Remove jetbrains and vscode
2025-05-23 18:14:46 +02:00

27 lines
388 B
Nix

{ ... }:
{
imports = [
../../modules/home
];
modules.home = {
apps = {
flatpak.enable = true;
kitty.enable = true;
};
editors = {
# neovim.enable = true; TODO: Not stable yet
vscode.enable = true;
};
shell = {
zsh.enable = true;
atuin.enable = true;
direnv.enable = true;
git.enable = true;
};
};
}