aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2018-08-26 08:08:25 -0300
committerEuAndreh <eu@euandre.org>2018-08-26 08:08:25 -0300
commitec4504ff9773bf8a7d222e7359fa085baf4214ae (patch)
tree92cf11111fbaef82b4d7e7e997c117a4d53bdf94
parentAdd extra xdg-mime handlers for audio file formats. (diff)
downloaddotfiles-ec4504ff9773bf8a7d222e7359fa085baf4214ae.tar.gz
dotfiles-ec4504ff9773bf8a7d222e7359fa085baf4214ae.tar.xz
Use custom version of timidity.
-rw-r--r--nixos/configuration.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix
index 3ff3d6d..41f72ba 100644
--- a/nixos/configuration.nix
+++ b/nixos/configuration.nix
@@ -65,8 +65,14 @@
freefont_ttf
];
+
environment.systemPackages =
- let pkgsUnstable = import(fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {};
+ let
+ pkgsUnstable = import(fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {};
+ timidityWithEvenMoreFormats = with pkgs; timidity.overrideAttrs (oldAttrs: {
+ configureFlags = oldAttrs.configureFlags ++ [ "--enable-audio=vorbis,flac" ];
+ buildInputs = oldAttrs.buildInputs ++ [ libogg libvorbis flac ];
+ });
in with pkgs; [
## Personal data tools
@@ -152,7 +158,6 @@
gitlab-runner
sshpass
zathura # for viewing Emacs PDF files
- timidity
notmuch
isync
cacert
@@ -183,6 +188,7 @@
texlive.combined.scheme-full
lilypond
frescobaldi
+ timidityWithEvenMoreFormats
## Programming tools