nix/users/root/home.nix
2023-08-15 18:57:31 +09:00

10 lines
No EOL
232 B
Nix

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