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