Colmena | 293 Members | |
| A simple, stateless NixOS deployment tool - https://github.com/zhaofengli/colmena | 97 Servers |
| Sender | Message | Time |
|---|---|---|
| 24 Dec 2024 | ||
In reply to @dmoonfire:matrix.org
I'm not sure what that means | 10:43:46 | |
| 13:58:22 | ||
| 14:03:18 | ||
In reply to@justinas:nixos.devAdding the configuration option to the top-level file for a host (in example/default.nix with example = import ./src/nodes/example/default.nix; in flake.nix), such as:gives the following error: Putting this in the top-level file: doesn't pick up the insecure packages entry. "Doesn't pick up" being "gives me an error that I need to add dotnet-sdk-6.0.428 to the permittedInsecurePackages" error. Putting the nixpkgs.config... in flake.nix:outputs.colmena.defaults is what used to work before I upgraded to 24.11.Putting the config... in flake.nix:outputs.colmena.meta.nixpkgs = import inputs.nixpkgs { ...; config.permitted... } doesn't pick it up.Putting the nixpkgs.config... in flake.nix:outputs.colmena.meta.nixpkgs = import inputs.nixpkgs { ...; config.permitted... } doesn't pick it up (but you already said that, just being complete). | 23:17:23 | |
| Alright, I see. The When you're importing / calling nixpkgs explicitly, its options are under an argument called However, when you're configuring nixpkgs in a modular way through the NixOS machine config, then that same thing is nested under In the context of a NixOS configuration module, | 23:21:35 | |
| * Alright, I see. The When you're importing / calling nixpkgs explicitly, its options are under an argument called However, when you're configuring nixpkgs in a modular way through the NixOS machine config, then that same thing is nested under In the context of a NixOS configuration module, | 23:24:09 | |
So, in the metadata, then this should work from what I'm understanding.But I still get the error that I need to allow "dotnet-sdk-6.0.428". | 23:26:06 | |