From bbe201141290541479f29fdd8751f2ae1d09dafb Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Sat, 31 Aug 2024 23:03:11 +0200 Subject: [PATCH] fix: rename modules into programs --- profiles/shared/modules/dock.nix | 4 ++-- profiles/shared/modules/finder.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/profiles/shared/modules/dock.nix b/profiles/shared/modules/dock.nix index ad749ad..3a09e17 100644 --- a/profiles/shared/modules/dock.nix +++ b/profiles/shared/modules/dock.nix @@ -1,13 +1,13 @@ { pkgs, lib, config, options, ... }: let - cfg = config.profile.modules.dock; + cfg = config.profile.programs.dock; in { options = with lib; { profile = { - modules = { + programs = { dock = { enable = mkEnableOption '' Whether to enable dock module diff --git a/profiles/shared/modules/finder.nix b/profiles/shared/modules/finder.nix index 731411a..59ad690 100644 --- a/profiles/shared/modules/finder.nix +++ b/profiles/shared/modules/finder.nix @@ -1,13 +1,13 @@ { pkgs, lib, config, options, ... }: let - cfg = config.profile.modules.finder; + cfg = config.profile.programs.finder; in { options = with lib; { profile = { - modules = { + programs = { finder = { enable = mkEnableOption '' Whether to enable finder module