mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
22 lines
308 B
Nix
22 lines
308 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home-manager = {
|
|
sharedModules = [
|
|
{
|
|
alyraffauf = {
|
|
services.easyeffects = {
|
|
enable = true;
|
|
preset = "framework13";
|
|
};
|
|
};
|
|
}
|
|
];
|
|
users.aly = import ../../homes/aly.nix;
|
|
};
|
|
}
|