-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
allow
authored and
allow
committed
Aug 1, 2024
1 parent
12c4445
commit 6f0ae57
Showing
10 changed files
with
375 additions
and
369 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ config, options, lib, ... }: | ||
with lib; | ||
{ | ||
options.flake._config = mkOption { | ||
type = types.raw; | ||
default = config; | ||
internal = true; | ||
}; | ||
|
||
options.flake._options = mkOption { | ||
type = types.raw; | ||
default = options; | ||
internal = true; | ||
}; | ||
} |
Oops, something went wrong.