Skip to content

Commit

Permalink
fix: rename modules into programs
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Aug 31, 2024
1 parent 7f7d593 commit bbe2011
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions profiles/shared/modules/dock.nix
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions profiles/shared/modules/finder.nix
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit bbe2011

Please sign in to comment.