rename disko input to diskoConfig for clarity
This commit is contained in:
12
flake.nix
12
flake.nix
@@ -13,7 +13,7 @@
|
||||
nathan.url = "./home";
|
||||
|
||||
system.url = "./system";
|
||||
system.inputs.disko.inputs.nixpkgs.follows = "nixpkgs";
|
||||
system.inputs.diskoConfig.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
};
|
||||
|
||||
@@ -41,8 +41,8 @@
|
||||
};
|
||||
|
||||
modules = [
|
||||
inputs.system.nixosModule
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
core_inputs.system.nixosModule
|
||||
core_inputs.home-manager.nixosModules.home-manager
|
||||
|
||||
({ lib, ... }: {
|
||||
sysconfig.${host}.enable = true;
|
||||
@@ -82,14 +82,14 @@
|
||||
|
||||
packages.${iso_system}.default = nixosConfigurations.iso.config.system.build.isoImage;
|
||||
|
||||
homeConfigurations."nathan" = inputs.home-manager.lib.homeManagerConfiguration {
|
||||
homeConfigurations."nathan" = core_inputs.home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
extraSpecialArgs = { inherit core_inputs; };
|
||||
|
||||
modules = [ inputs.nathan.homeManagerModule ];
|
||||
modules = [ core_inputs.nathan.homeManagerModule ];
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user