26 lines
481 B
Nix
26 lines
481 B
Nix
{
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
nixpkgs.hostPlatform = {
|
|
system = "aarch64-linux";
|
|
};
|
|
clan.core.sops.defaultGroups = [ "admins" ];
|
|
|
|
clan.core.settings.name = "anser";
|
|
clan.core.settings.machine.description = "";
|
|
|
|
# imports = [ inputs.nixos-hardware ];
|
|
boot.loader.grub.enable = false;
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
boot.kernelParams = [
|
|
"console=ttyS2,1500000n8"
|
|
"loglevel=4"
|
|
];
|
|
|
|
}
|