modules: system: move 'documentation'

This commit is contained in:
Bruno BELANYI 2021-05-29 16:53:44 +02:00
parent 377c97ea9f
commit 43ef533ae1
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,6 @@
{
imports = [
./documentation.nix
./hardware
./home.nix
./nix.nix

View File

@ -3,6 +3,7 @@
{
imports = [
./documentation.nix
./language.nix
./media.nix
./users.nix

View File

@ -1,9 +1,9 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.module.documentation;
cfg = config.my.system.documentation;
in
{
options.my.module.documentation = with lib.my; {
options.my.system.documentation = with lib.my; {
enable = mkDisableOption "Documentation integration";
dev.enable = mkDisableOption "Documentation aimed at developers";