nixos/hosts/perso-home/home.nix
Florian RICHER 9390144b66
Some checks failed
check / check (push) Failing after 0s
Add perso-home with only home-manager conf
2024-10-28 19:19:32 +01:00

20 lines
269 B
Nix

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