nix/home-mods/audio/default.nix

19 lines
300 B
Nix
Raw Normal View History

2023-11-07 23:49:32 +01:00
{ config
, pkgs
, inputs
, ...
}: {
2023-11-09 19:33:08 +01:00
# xdg.configFile."easyeffects/output/default.json".source = ./default.json;
2023-11-07 23:49:32 +01:00
services.easyeffects = {
enable = true;
2023-11-09 19:33:08 +01:00
# preset = "default";
2024-02-02 16:13:55 +01:00
package = pkgs.easyeffects;
2023-11-07 23:49:32 +01:00
};
2024-02-02 16:13:55 +01:00
home.packages = with pkgs; [
2024-01-30 15:32:51 +01:00
my.spotube
2023-11-07 23:49:32 +01:00
spotify
2023-11-09 19:33:08 +01:00
ncspot
2023-11-07 23:49:32 +01:00
];
}