mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2026-02-02 03:05:09 +01:00
feat: switch from flake-parts & devenv to rensa + add nixtest
This commit is contained in:
parent
6af83809f7
commit
012a3afb2d
18 changed files with 553 additions and 611 deletions
12
tests/fixtures/example/values.nix
vendored
Normal file
12
tests/fixtures/example/values.nix
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{lib, ...}:
|
||||
with lib; {
|
||||
options = {
|
||||
example = mkOption {
|
||||
type = types.str;
|
||||
default = "Hello world!";
|
||||
description = ''
|
||||
Some description.
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue