modules: migrate to nilla
This commit is contained in:
parent
ea89bf9e71
commit
75074db3c8
6 changed files with 35 additions and 12 deletions
|
@ -3,5 +3,6 @@
|
|||
./builders
|
||||
./services.nix
|
||||
./configurations.nix
|
||||
./modules.nix
|
||||
];
|
||||
}
|
||||
|
|
17
modules/nilla/modules.nix
Normal file
17
modules/nilla/modules.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ lib }:
|
||||
{
|
||||
options = {
|
||||
nixosModules = lib.options.create {
|
||||
type = lib.types.attrs.of lib.types.raw;
|
||||
default.value = { };
|
||||
};
|
||||
darwinModules = lib.options.create {
|
||||
type = lib.types.attrs.of lib.types.raw;
|
||||
default.value = { };
|
||||
};
|
||||
homeModules = lib.options.create {
|
||||
type = lib.types.attrs.of lib.types.raw;
|
||||
default.value = { };
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue