Files
chiasson-nix/modules/hosts/t2mbp/default.nix
T
Olivier f424ab98c7 refactor(hosts): remove redundant host and system arguments
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.
2026-07-17 11:30:34 -03:00

13 lines
284 B
Nix

{ self, inputs, ... }: {
flake.nixosConfigurations.t2mbp = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit self inputs;
};
modules = [
self.nixosModules.t2mbpConfiguration
self.nixosModules.t2mbpHome
];
};
}