formatted
All checks were successful
Run tests / run_tests (push) Successful in 52s

This commit is contained in:
Snorre Ettrup Altschul 2025-04-04 00:53:43 +02:00
parent 33a30b1d2a
commit 4c4f67360b
2 changed files with 6 additions and 8 deletions

View file

@ -1,7 +1,4 @@
{
lib,
...
}:
{lib, ...}:
with lib; {
imports = [
./system.nix

View file

@ -4,7 +4,8 @@
...
}:
with lib; let
mkStrOption = default: description: mkOption {
mkStrOption = default: description:
mkOption {
type = types.str;
inherit default description;
};