nix/users/root/home.nix

10 lines
236 B
Nix
Raw Normal View History

2023-08-15 18:56:20 +09:00
{ config, pkgs, hostname, hmStateVersion, ... }: {
2023-08-15 18:58:33 +09:00
home.stateVersion = "${hmStateVersion}";
2023-07-01 19:01:20 +09:00
imports = [
2023-08-15 18:56:20 +09:00
# Host specific Configs:
# ../../hosts/${hostname}/home-manager
# Universal Configs:
../../home-manager
2023-07-01 19:01:20 +09:00
];
2023-07-01 19:05:12 +09:00
}