This commit is contained in:
Daniel Langbein 2025-02-01 21:50:30 +01:00
parent 823c25a42a
commit cf54928bdf
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 21 additions and 0 deletions

View File

@ -201,6 +201,10 @@ i='@server'; colmena build --on $i -v --show-trace && colmena apply --on $i boot
#colmena exec --on $i "reboot"
```
yodaTuxHeadless:
- This is a second configuration file for the `yodaTux` host. Therefore, its deployment config is in a separate `hive.nix` file. First `cd` into [hosts/yodaTuxHeadless](hosts/yodaTuxHeadless), then run the "normal" colmena commands for `yodaTux`.
### Update
* Updating NixOS. https://superuser.com/a/1604695

View File

@ -0,0 +1,17 @@
let
sources = import ../../nix/sources.nix;
in
{
meta = {
nixpkgs = import sources.nixpkgs {};
};
yodaTux = { name, nodes, ... }: {
imports = [ ./configuration.nix ];
deployment = {
allowLocalDeployment = true;
targetHost = null;
};
};
}