Skip to content

Commit

Permalink
nixos: fix syntax error in alsa module
Browse files Browse the repository at this point in the history
  • Loading branch information
aristidb committed Feb 22, 2018
1 parent ea48c41 commit 58b07ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/audio/alsa.nix
Expand Up @@ -78,7 +78,7 @@ in
###### implementation

config = {
sound.enable = mkDefault !(versionAtLeast config.system.stateVersion "18.03")
sound.enable = mkDefault !(versionAtLeast config.system.stateVersion "18.03");
} // mkIf config.sound.enable {

environment.systemPackages = [ alsaUtils ];
Expand Down

0 comments on commit 58b07ac

Please sign in to comment.