quickstart: use all buildClan outputs

This commit is contained in:
lassulus
2023-09-22 10:28:42 +02:00
parent d242ac304c
commit 83ca27fe2d

View File

@@ -73,19 +73,21 @@ Absolutely, let's break down the migration step by step, explaining each action
Previous configuration: Previous configuration:
```nix ```nix
nixosConfigurations.example-desktop = nixpkgs.lib.nixosSystem { {
system = "x86_64-linux"; nixosConfigurations.example-desktop = nixpkgs.lib.nixosSystem {
modules = [ system = "x86_64-linux";
./configuration.nix modules = [
]; ./configuration.nix
[...] ];
}; [...]
};
}
``` ```
After change: After change:
```nix ```nix
nixosConfigurations = clan-core.lib.buildClan { let clan = clan-core.lib.buildClan {
# this needs to point at the repository root # this needs to point at the repository root
directory = self; directory = self;
specialArgs = {}; specialArgs = {};
@@ -98,11 +100,13 @@ Absolutely, let's break down the migration step by step, explaining each action
}; };
}; };
}; };
in { inherit (clan) nixosConfigurations clanInternal; }
``` ```
- `nixosConfigurations`: Defines NixOS configurations, using Clan Cores `buildClan` function to manage the machines. - `nixosConfigurations`: Defines NixOS configurations, using Clan Cores `buildClan` function to manage the machines.
- Inside `machines`, a new machine configuration is defined (in this case, `example-desktop`). - Inside `machines`, a new machine configuration is defined (in this case, `example-desktop`).
- Inside `example-desktop` which is the target machine hostname, `nixpkgs.hostPlatform` specifies the host platform as `x86_64-linux`. - Inside `example-desktop` which is the target machine hostname, `nixpkgs.hostPlatform` specifies the host platform as `x86_64-linux`.
- `clanInternals`: Is required to enable evaluation of the secret generation/upload script on every architecture
4. **Rebuild and Switch**: Rebuild your NixOS configuration using the updated flake: 4. **Rebuild and Switch**: Rebuild your NixOS configuration using the updated flake: