nixcfg/hosts/lavaridge/home.nix

22 lines
305 B
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{
2024-04-07 22:16:33 -04:00
config,
inputs,
2024-04-07 22:16:33 -04:00
lib,
pkgs,
2024-04-07 22:16:33 -04:00
...
}: {
2024-05-21 22:28:52 -04:00
home-manager = {
sharedModules = [
{
ar.home = {
2024-05-26 22:19:58 -04:00
services.easyeffects = {
enable = true;
preset = "framework13";
};
2024-05-21 22:28:52 -04:00
};
}
];
users.aly = import ../../homes/aly.nix;
2024-03-28 19:52:15 -04:00
};
}