refactor(home-manager): try to not repeating myself

This commit is contained in:
Yorick Barbanneau 2024-09-25 23:49:22 +02:00
parent b0d455217f
commit e862d4b35c
3 changed files with 21 additions and 24 deletions

13
home-manager/base.nix Normal file
View file

@ -0,0 +1,13 @@
{ lib, hostname, ...}:
{
programs.home-manager.enable = true;
home.sessionPath = [
"$HOME/.local/bin"
];
imports = [
../hosts/${hostname}/home-config.nix
../modules/home-manager/default.nix
] ++ lib.optional (
builtins.pathExists ../hosts/${hostname}/includes/home-manager.nix
) ../hosts/${hostname}/includes/home-manager.nix;
}