SN0WM1X-style configuration for some programs/services. If you like some of my configurations, use it to easily enable them.
{ inputs, ...}: {
imports = [
# inputs.sn0wm1x.nixosModules.sn0wm1x # not yet
...
];
home-manager.sharedModules = [
inputs.sn0wm1x.homeManagerModules.sn0wm1x
...
];
}
Usually they have a simple enable option, but the configuration may vary depending on the package.
{
programs.fastfetch.enable = true;
programs.fastfetch.sn0wm1x = true;
}
WIP modules, often placed here because I haven't tested it yet.
{ inputs, ...}: {
imports = [
inputs.sn0wm1x.nixosModules.experimental
...
];
home-manager.sharedModules = [
# inputs.sn0wm1x.homeManagerModules.experimental # not yet
...
];
}