Files
lan-mouse/nix
Hannes Schulze 55bdf1e63e Update Nix Flake (#161)
* nix: add support for aarch64-linux

* nix: add librsvg to enable svg icons in gtk
2024-07-16 14:59:36 +02:00
..
2024-07-16 14:59:36 +02:00

Nix Flake Usage

run

nix run github:feschber/lan-mouse

# with params
nix run github:feschber/lan-mouse -- --help

home-manager module

add input

inputs = {
    lan-mouse.url = "github:feschber/lan-mouse";
}

enable lan-mouse

{
  inputs,
  ...
}: {
  # add the home manager module
  imports = [inputs.lan-mouse.homeManagerModules.default];

  programs.lan-mouse = {
    enable = true;
    # systemd = false;
    # package = inputs.lan-mouse.packages.${pkgs.stdenv.hostPlatform.system}.default
    # Optional configuration in nix syntax, see config.toml for available options
    # settings = { };
    };
  };
}