11 lines
328 B
Nix
Raw Normal View History

2021-08-17 23:38:13 +03:00
{ config, lib, pkgs, ... }: {
2022-12-10 22:34:39 +03:00
home-manager.users.${config.mainuser} = {
xdg.configFile = {
"easyeffects/output/HE4XX.json".text =
2023-01-26 02:12:00 +03:00
builtins.readFile ./HE4XX.json;
2022-12-10 22:34:39 +03:00
"easyeffects/output/Bluetooth.json".text =
2023-01-26 02:12:00 +03:00
builtins.readFile ./Bluetooth.json;
2022-12-10 22:34:39 +03:00
};
services.easyeffects.enable = true;
};
2021-08-17 23:38:13 +03:00
}