nix/users/root/home.nix
2023-08-15 18:56:20 +09:00

10 lines
No EOL
234 B
Nix

{ config, pkgs, hostname, hmStateVersion, ... }: {
home.stateVersion = ${hmStateVersion};
imports = [
# Host specific Configs:
# ../../hosts/${hostname}/home-manager
# Universal Configs:
../../home-manager
];
}