nixos/hosts/perso-desktop/home.nix
Florian RICHER 1a97ee6210
All checks were successful
check / check (push) Successful in 32s
modules: Add minecraft
2025-02-01 17:55:46 +01:00

24 lines
354 B
Nix

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