This commit is contained in:
2025-12-28 15:49:18 -05:00
parent b5d2e3188d
commit a549b01111
15 changed files with 19 additions and 19 deletions

View File

@@ -171,7 +171,7 @@
hostPlatform = system;
buildPlatform = builtins.currentSystem;
};
lib = import ./lib.nix { inherit inputs pkgs; };
lib = import ./modules/lib.nix { inherit inputs pkgs; };
in
{
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style;
@@ -224,7 +224,7 @@
{
nixpkgs.overlays = [
nix-minecraft.overlay
(import ./overlays.nix)
(import ./modules/overlays.nix)
];
}
@@ -239,7 +239,7 @@
...
}:
{
home-manager.users.${username} = import ./home.nix;
home-manager.users.${username} = import ./modules/home.nix;
}
)
]