builders: new home in root

main
Zynh Ludwig 2024-08-22 00:17:55 -07:00
parent a705681094
commit 8ffa090603
2 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ let
overlays = [ self.overlays.default ];
});
lib = nixpkgs.lib.extend (import ../lib);
lib = nixpkgs.lib.extend (import ./lib);
inherit (inputs.home-manager.lib) homeManagerConfiguration;
inherit (lib) nixosSystem;
@ -25,8 +25,8 @@ rec {
specialArgs = { inherit inputs self; };
modules = [
../hosts/${hostname}/hardware-configuration.nix
../hosts/${hostname}/configuration.nix
./hosts/${hostname}/hardware-configuration.nix
./hosts/${hostname}/configuration.nix
inputs.home-manager.nixosModules.default
{
home-manager.extraSpecialArgs = {
@ -57,7 +57,7 @@ rec {
extraSpecialArgs = { inherit inputs self; };
modules = [
../hosts/${configHost}/home.nix
./hosts/${configHost}/home.nix
];
});
compileHomes =

View File

@ -16,7 +16,7 @@
outputs =
{ self, nixpkgs, ... }@inputs:
let
builders = import ./lib/builders.nix inputs;
builders = import ./builders.nix inputs;
in
{
nixosConfigurations = builders.compileSystems [