Compare commits
2 commits
fe1537735d
...
8508b61b92
| Author | SHA1 | Date | |
|---|---|---|---|
| 8508b61b92 | |||
| e1f8c6cc3b |
4 changed files with 17 additions and 4 deletions
|
|
@ -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
|
||||
- ``
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -112,8 +112,6 @@ in
|
|||
[
|
||||
self.nixosModules.default
|
||||
(findImport (root + "/hosts/${name}"))
|
||||
|
||||
# inputs.microvm.nixosModules.microvm
|
||||
]
|
||||
++ (groupModules root)
|
||||
++ node.modules
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue