aboutsummaryrefslogtreecommitdiff
path: root/home/flac
diff options
context:
space:
mode:
Diffstat (limited to 'home/flac')
-rw-r--r--home/flac/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/home/flac/default.nix b/home/flac/default.nix
deleted file mode 100644
index 42500af..0000000
--- a/home/flac/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ config, lib, pkgs, ... }:
-let cfg = config.my.home.flac;
-in
-{
- options.my.home.flac = with lib; {
- enable = mkEnableOption "flac configuration";
- };
-
- config.home.packages = with pkgs;
- lib.mkIf cfg.enable ([
- flac
- abcde
- (pkgs.writers.writeDashBin "rip-flac" ''
- cd ~/import
- ${pkgs.abcde}/bin/abcde -Vx -G -a "cddb,read,encode,tag,move,clean" -o flac
- '')
- ]);
-}