chore: make namespace generic so people can copy easier
This commit is contained in:
parent
f86211cb02
commit
f7f9db9509
45 changed files with 249 additions and 217 deletions
|
@ -1,17 +1,17 @@
|
|||
{
|
||||
options,
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
namespace,
|
||||
options,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.wyrdgard;
|
||||
with lib.${namespace};
|
||||
let
|
||||
cfg = config.wyrdgard.system.locale;
|
||||
cfg = config.${namespace}.system.locale;
|
||||
in
|
||||
{
|
||||
options.wyrdgard.system.locale = with types; {
|
||||
options.${namespace}.system.locale = with types; {
|
||||
enable = mkBoolOpt false "Whether or not to manage locale settings.";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue