nix/users/root/home.nix

10 lines
236 B
Nix
Raw Normal View History

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