nixos/hosts/pro-laptop/home.nix
Florian RICHER 8e722cfe5a
All checks were successful
check / check (push) Successful in 28s
modules: Move vscode to flatpak
2024-06-04 21:59:55 +02:00

24 lines
367 B
Nix

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