Unverified Commit 418cc441 authored by Acid Bong's avatar Acid Bong Committed by GitHub
Browse files

nixos/soundmodem: drop lib.mdDoc, use package option everywhere (#304811)

- Fixed the `systemPackages` definition: it contained just the package
  name without preceding `pkgs`
- Removed `lib.mdDoc` usage in accordance with #303841
parent 288f6637
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ in
      enable = mkOption {
        type = types.bool;
        default = false;
        description = lib.mdDoc ''
        description = ''
          Whether to add Soundmodem to the global environment and configure a
          wrapper for 'soundmodemconfig' for users in the 'soundmodem' group.
        '';
@@ -21,7 +21,7 @@ in
  };

  config = mkIf cfg.enable {
    environment.systemPackages = [ soundmodem ];
    environment.systemPackages = [ cfg.package ];
    users.groups.soundmodem = { };

    security.wrappers.soundmodemconfig = {