Bug Fix: NixOS Missing Semicolon in module.nix (#41)

Nix build was broken due to a missing semicolon.
This commit is contained in:
Shivanshu Kant Prasad 2023-08-23 17:10:33 +05:30 committed by GitHub
parent a15bb1e17e
commit 49dbf074be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,7 +136,7 @@ in {
AudioNumbers = mkOption { AudioNumbers = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
description = "Display numbers instead of a slider for the two audio widgets. Doesn't affect the audio flyin" description = "Display numbers instead of a slider for the two audio widgets. Doesn't affect the audio flyin";
}; };
AudioMinVolume = mkOption { AudioMinVolume = mkOption {
type = types.nullOr types.int; type = types.nullOr types.int;