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;
}

View file

@ -1,18 +1,11 @@
{ lib, stateVersion, username, hostname, ... }:
{ stateVersion, username, ... }:
{
home.stateVersion = stateVersion;
home.username = "${username}";
home.homeDirectory = "/home/${username}";
home.stateVersion = stateVersion;
programs.home-manager.enable = true;
fonts.fontconfig.enable = true;
home.sessionPath = [
"$HOME/.local/bin"
];
fonts.fontconfig.enable = true;
imports = [
./base.nix
../nixos/includes/system/overlay.nix
../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;
];
}