Refactors to use app.nix for easier extension. Removes librewolf from host, as it makes more sense on the user every time.
11 lines
219 B
Nix
11 lines
219 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
options.input-remapper = {
|
|
enable = lib.mkEnableOption "Enables input-remapper";
|
|
};
|
|
|
|
config = lib.mkIf config.input-remapper.enable {
|
|
services.input-remapper.enable = true;
|
|
};
|
|
}
|