mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
Aly Raffauf
945fbdcc39
* initial commit * simplify output structure * don't pull wallpaper from flake, use fetchGit * swap nixvim for neovim * fetch wallpaper correctly * move nixvim to aly home config
20 lines
251 B
Nix
20 lines
251 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home-manager = {
|
|
sharedModules = [
|
|
{
|
|
ar.home = {
|
|
services.easyeffects = {
|
|
enable = true;
|
|
preset = "framework13";
|
|
};
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|