Add perso-home with only home-manager conf
Some checks failed
check / check (push) Failing after 0s

This commit is contained in:
Florian RICHER 2024-10-28 19:19:32 +01:00
parent df09153864
commit 9390144b66
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
2 changed files with 37 additions and 4 deletions

20
hosts/perso-home/home.nix Normal file
View file

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