mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 11:12:49 +00:00
Bug Fix: NixOS Missing Semicolon in module.nix
(#41)
Nix build was broken due to a missing semicolon.
This commit is contained in:
parent
a15bb1e17e
commit
49dbf074be
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue