summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/soundmodem.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/programs/soundmodem.nix')
-rw-r--r--nixos/modules/programs/soundmodem.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/programs/soundmodem.nix b/nixos/modules/programs/soundmodem.nix
index 59c1f2fb2ded..ab992c63c608 100644
--- a/nixos/modules/programs/soundmodem.nix
+++ b/nixos/modules/programs/soundmodem.nix
@@ -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 = {