nixcfg/hosts/rustboro/home.nix

23 lines
392 B
Nix

{
inputs,
config,
pkgs,
lib,
...
}: {
home-manager.users.aly = {
imports = [../../homeManagerModules ../../aly.nix];
alyraffauf = {
desktop.sway = {
enable = true;
randomWallpaper = true;
};
services.easyeffects = {
enable = true;
preset = "LoudnessEqualizer.json";
};
};
home.stateVersion = "23.11";
};
}