refactor(hosts): move hosts to root of flake

This commit is contained in:
ooks-io 2024-05-26 16:10:53 +12:00
parent e888ebe69c
commit 062ecb093c
15 changed files with 4 additions and 4 deletions

View file

@ -5,11 +5,11 @@ let
hm = inputs.home-manager.nixosModules.home-manager; hm = inputs.home-manager.nixosModules.home-manager;
systemInputs = "${self}/sys"; sys = "${self}/sys";
hosts = "${systemInputs}/hosts"; hosts = "${self}/hosts";
base = "${systemInputs}/modules/base";
roles = "${systemInputs}/modules/roles"; base = "${sys}/modules/base";
roles = "${sys}/modules/roles";
gaming = "${roles}/gaming"; gaming = "${roles}/gaming";
workstation = "${roles}/workstation"; workstation = "${roles}/workstation";
media-server = "${roles}/media-server"; media-server = "${roles}/media-server";