nixos/hosts/perso-laptop/home.nix
Florian RICHER f5407927cf
All checks were successful
check / check (push) Successful in 31s
Move vscode to editors
2024-05-28 20:45:50 +02:00

28 lines
419 B
Nix

{ config, pkgs, ... }:
{
imports = [
../../modules/home
];
modules.home = {
apps = {
chromium.enable = true;
flatpak.enable = true;
jetbrainsToolbox.enable = true;
kitty.enable = true;
};
editors = {
vscode.enable = true;
};
shell = {
zsh.enable = true;
atuin.enable = true;
direnv.enable = true;
git.enable = true;
};
};
}