nixcfg/hosts/rustboro/home.nix

23 lines
392 B
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{
2024-04-07 22:16:33 -04:00
inputs,
config,
pkgs,
lib,
...
}: {
2024-03-28 19:52:15 -04:00
home-manager.users.aly = {
imports = [../../homeManagerModules ../../aly.nix];
2024-04-19 22:15:27 -04:00
alyraffauf = {
2024-04-20 21:18:41 -04:00
desktop.sway = {
enable = true;
randomWallpaper = true;
};
2024-04-19 22:15:27 -04:00
services.easyeffects = {
enable = true;
preset = "LoudnessEqualizer.json";
};
};
home.stateVersion = "23.11";
2024-03-28 19:52:15 -04:00
};
}