Compare commits

..

No commits in common. "8508b61b9224f409dc85562da4260dfbf9ab52cf" and "fe1537735d5ebd8432bace71242a257cd000c1a4" have entirely different histories.

4 changed files with 4 additions and 17 deletions

View file

@ -23,11 +23,3 @@ Minor patches
- cerulean no longer depends on `nixpkgs`, `base` package set should be set instead - cerulean no longer depends on `nixpkgs`, `base` package set should be set instead
- rename `extraModules` -> `modules` - rename `extraModules` -> `modules`
- rename `specialArgs` -> `args` - 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,11 +13,12 @@
# limitations under the License. # limitations under the License.
{ {
root, root,
lib,
system, system,
_cerulean, _cerulean,
... ...
} @ args: { } @ args: {
imports = with _cerulean.inputs; imports =
[ [
# add support for `options.legacyImports` # add support for `options.legacyImports`
# ./legacy-imports.nix # ./legacy-imports.nix
@ -26,9 +27,6 @@
(import (root + "/nixpkgs.nix")) (import (root + "/nixpkgs.nix"))
# options declarations # options declarations
(import ./nixpkgs.nix (args // {contextName = "hosts";})) (import ./nixpkgs.nix (args // {contextName = "hosts";}))
sops-nix.nixosModules.sops
# microvm.nixosModules.microvm
] ]
++ ( ++ (
if _cerulean.homeManager != null if _cerulean.homeManager != null

View file

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

View file

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