rename myOptions to modules

This commit is contained in:
Dragyx 2024-04-12 22:03:29 +02:00
commit 6961d2bd8c
45 changed files with 1065 additions and 89 deletions

View file

@ -1,9 +1,9 @@
{ config, lib, pkgs, ... }:
with lib; let
cfg = config.myOptions.programs.obs;
username = config.myOptions.other.system.username;
cfg = config.modules.programs.obs;
username = config.modules.other.system.username;
in {
options.myOptions.programs.obs.enable = mkEnableOption "obs";
options.modules.programs.obs.enable = mkEnableOption "obs";
config = mkIf cfg.enable {
home-manager.users.${username} = {