Files
chiasson-nix/modules/hosts/uConsole/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

19 lines
571 B
Nix

{ self, inputs, ... }: {
flake.nixosConfigurations.uConsole = inputs.nixos-raspberrypi.lib.nixosSystem {
system = "aarch64-linux";
specialArgs = inputs // {
inherit self;
inputs = inputs;
};
trustCaches = false;
modules = [
inputs.nixos-raspberrypi.nixosModules.raspberry-pi-5.base
inputs.oom-hardware.nixosModules.uc.kernel
inputs.oom-hardware.nixosModules.uc.configtxt
inputs.oom-hardware.nixosModules.uc.base-cm5
self.nixosModules.uConsoleConfiguration
self.nixosModules.uConsoleHome
];
};
}