Files
clan-core/templates/machine/flash-installer/configuration.nix
pinpox 35e5f4a42a Remove clanModules
- Removes clanModules in favor of the new clanServices
- Adds a warning and link to the migration guide
2025-08-14 12:02:40 +02:00

18 lines
289 B
Nix

{
config,
clan-core,
inputs,
...
}:
{
imports = [
./disko.nix
clan-core.nixosModules.installer
];
clan.core.deployment.requireExplicitUpdate = true;
nixpkgs.pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
system.stateVersion = config.system.nixos.release;
}