nixcfg/hosts/rustboro/home.nix

30 lines
570 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-05-19 18:17:05 -04:00
home-manager = {
sharedModules = [
{
programs.vscode.userSettings = {
"editor.fontSize" = "16";
};
alyraffauf = {
services.easyeffects = {
enable = true;
preset = "LoudnessEqualizer";
};
theme = {
2024-06-21 20:36:57 -04:00
cursorTheme.size = lib.mkForce 32;
font.size = lib.mkForce 14;
terminalFont.size = lib.mkForce 14;
};
};
2024-05-19 18:17:05 -04:00
}
];
users.aly = import ../../homes/aly.nix;
2024-03-28 19:52:15 -04:00
};
}