Compare commits

...

2 commits

Author SHA1 Message Date
8508b61b92 update CHANGELOG (todo) 2026-02-26 15:21:33 +10:00
e1f8c6cc3b add sops-nix dependency 2026-02-26 15:21:23 +10:00
4 changed files with 17 additions and 4 deletions

View file

@ -23,3 +23,11 @@ Minor patches
- cerulean no longer depends on `nixpkgs`, `base` package set should be set instead
- rename `extraModules` -> `modules`
- rename `specialArgs` -> `args`
## v0.2.3-alpha
>[!TODO]
> I've been too focused on upcoming changes...
## v0.2.4-alpha
- `homeManager` flake reference may now be specified in snowflake
- ``

View file

@ -13,12 +13,11 @@
# limitations under the License.
{
root,
lib,
system,
_cerulean,
...
} @ args: {
imports =
imports = with _cerulean.inputs;
[
# add support for `options.legacyImports`
# ./legacy-imports.nix
@ -27,6 +26,9 @@
(import (root + "/nixpkgs.nix"))
# options declarations
(import ./nixpkgs.nix (args // {contextName = "hosts";}))
sops-nix.nixosModules.sops
# microvm.nixosModules.microvm
]
++ (
if _cerulean.homeManager != null

View file

@ -112,8 +112,6 @@ in
[
self.nixosModules.default
(findImport (root + "/hosts/${name}"))
# inputs.microvm.nixosModules.microvm
]
++ (groupModules root)
++ node.modules

View file

@ -32,6 +32,11 @@
url = "github:microvm-nix/microvm.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {