14 lines
274 B
Nix
14 lines
274 B
Nix
{ lib, ... }:
|
|
{
|
|
nixpkgs.hostPlatform = {
|
|
system = "x86_64-linux";
|
|
};
|
|
system.stateVersion = lib.mkForce "26.11";
|
|
clan.core.sops.defaultGroups = [ "admins" ];
|
|
|
|
clan.core.settings.name = "zosma";
|
|
clan.core.settings.machine.description =
|
|
"USB installer";
|
|
|
|
}
|