builders: new home in root
This commit is contained in:
parent
a705681094
commit
8ffa090603
2 changed files with 5 additions and 5 deletions
|
@ -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 =
|
|
@ -16,7 +16,7 @@
|
|||
outputs =
|
||||
{ self, nixpkgs, ... }@inputs:
|
||||
let
|
||||
builders = import ./lib/builders.nix inputs;
|
||||
builders = import ./builders.nix inputs;
|
||||
in
|
||||
{
|
||||
nixosConfigurations = builders.compileSystems [
|
||||
|
|
Loading…
Reference in a new issue