Reorganization

This commit is contained in:
Kyler Olsen 2025-05-07 17:12:21 -06:00
parent a67dd1210d
commit fbcd84f79f
3 changed files with 3 additions and 3 deletions

View File

@ -17,14 +17,14 @@
nixosConfigurations = { nixosConfigurations = {
nixos-ytd = lib.nixosSystem { nixos-ytd = lib.nixosSystem {
inherit system; inherit system;
modules = [ ./configuration.nix ]; modules = [ ./sys/configuration.nix ];
}; };
}; };
homeConfigurations = { homeConfigurations = {
kyler = home-manager.lib.homeManagerConfiguration { kyler = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [ ./home.nix ]; modules = [ ./home/home.nix ];
}; };
}; };

View File

@ -3,7 +3,7 @@
{ {
imports = imports =
[ [
./hardware-configuration.nix ../hardware-configuration.nix
]; ];
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;