f424ab98c7
Remove explicit `host` and `system` definitions from `specialArgs` in various host `default.nix` files. These values are redundant as they can be derived from the flake context or are already provided by the calling environment.
14 lines
292 B
Nix
14 lines
292 B
Nix
{ self, inputs, ... }: {
|
|
|
|
flake.nixosConfigurations.ideapad = inputs.nixpkgs.lib.nixosSystem {
|
|
system = "aarch64-linux";
|
|
specialArgs = {
|
|
inherit self inputs;
|
|
};
|
|
modules = [
|
|
self.nixosModules.ideapadConfiguration
|
|
self.nixosModules.ideapadHome
|
|
];
|
|
};
|
|
}
|