nixos/hosts/pro-laptop/home.nix
Florian RICHER d8db810f8a
All checks were successful
check / check (push) Successful in 32s
pro-laptop: Add emacs
2024-09-16 13:50:52 +02:00

30 lines
475 B
Nix

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