mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-09-11 06:51:05 +03:00
nix(chore): set nixpkgs to nixos-26.05, update flake.lock (#495)
fixes #492 Co-authored-by: KristijanZic <kristijan.zic@10x.engineering>
This commit is contained in:
@@ -31,7 +31,7 @@ rustPlatform.buildRustPackage {
|
||||
libadwaita
|
||||
librsvg
|
||||
]
|
||||
++ lib.optionals stdenv.isLinux [
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||
libX11
|
||||
libXtst
|
||||
];
|
||||
|
||||
@@ -23,12 +23,12 @@ in {
|
||||
};
|
||||
systemd = mkOption {
|
||||
type = types.bool;
|
||||
default = pkgs.stdenv.isLinux;
|
||||
default = pkgs.stdenv.hostPlatform.isLinux;
|
||||
description = "Whether to enable to systemd service for lan-mouse on linux.";
|
||||
};
|
||||
launchd = mkOption {
|
||||
type = types.bool;
|
||||
default = pkgs.stdenv.isDarwin;
|
||||
default = pkgs.stdenv.hostPlatform.isDarwin;
|
||||
description = "Whether to enable to launchd service for lan-mouse on macOS.";
|
||||
};
|
||||
settings = lib.mkOption {
|
||||
|
||||
Reference in New Issue
Block a user