ma: fix warnings and errors for 19.09

This commit is contained in:
makefu 2019-10-15 08:47:31 +02:00
parent fb121299ab
commit d82b3b9b66
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
5 changed files with 11 additions and 11 deletions

View File

@ -7,7 +7,6 @@ with import <stockholm/lib>;
# configured media keys inside awesomerc
# sound.mediaKeys.enable = true;
hardware.bluetooth.enable = true;
# possible i915 powersave options:
# options i915 enable_rc6=1 enable_fbc=1 semaphores=1

View File

@ -4,6 +4,7 @@
imports = [
./tpm.nix
./ssd.nix
./bluetooth.nix
];
boot.kernelModules = [

View File

@ -7,5 +7,5 @@
lxmenu-data
];
environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
services.gnome3.gvfs.enable = true;
services.gvfs.enable = true;
}

View File

@ -18,7 +18,7 @@ let
};
args = mkOption {
type = types.string;
type = types.separatedString;
description = ''
see https://erdgeist.org/arts/software/opentracker/ for all params
'';

View File

@ -25,15 +25,15 @@ in {
patches = [ ./custom/quodlibet/single-digit-discnumber.patch
./custom/quodlibet/remove-override-warning.patch ];
});
rclone = super.pkgs.stdenv.lib.overrideDerivation super.rclone (old: {
postInstall = old.postInstall + ''
#rclone = super.pkgs.stdenv.lib.overrideDerivation super.rclone (old: {
# postInstall = old.postInstall + ''
$out/bin/rclone genautocomplete zsh _rclone
install -D -m644 _rclone $out/share/zsh/vendor-completions/_rclone
$out/bin/rclone genautocomplete bash _rclone
install -D -m644 _rclone $out/etc/bash_completion.d/rclone
'';
});
# $out/bin/rclone genautocomplete zsh _rclone
# install -D -m644 _rclone $out/share/zsh/vendor-completions/_rclone
# $out/bin/rclone genautocomplete bash _rclone
# install -D -m644 _rclone $out/etc/bash_completion.d/rclone
# '';
#});
alsa-hdspconf = callPackage ./custom/alsa-tools { alsaToolTarget="hdspconf";};
alsa-hdspmixer = callPackage ./custom/alsa-tools { alsaToolTarget="hdspmixer";};
alsa-hdsploader = callPackage ./custom/alsa-tools { alsaToolTarget="hdsploader";};