mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:03:55 -05:00
18 lines
272 B
Nix
18 lines
272 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
home-manager.users.aly = {
|
|
imports = [../../homeManagerModules ../../aly.nix];
|
|
alyraffauf = {
|
|
services.easyeffects = {
|
|
enable = true;
|
|
preset = "LoudnessEqualizer.json";
|
|
};
|
|
};
|
|
};
|
|
}
|