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 = {
nixos-ytd = lib.nixosSystem {
inherit system;
modules = [ ./configuration.nix ];
modules = [ ./sys/configuration.nix ];
};
};
homeConfigurations = {
kyler = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
modules = [ ./home/home.nix ];
};
};

View File

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