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:
onelock
2026-09-07 08:15:09 +01:00
committed by GitHub
parent 6b1eddef7a
commit 00c5eee8d8
4 changed files with 31 additions and 13 deletions

View File

@@ -31,7 +31,7 @@ rustPlatform.buildRustPackage {
libadwaita
librsvg
]
++ lib.optionals stdenv.isLinux [
++ lib.optionals stdenv.hostPlatform.isLinux [
libX11
libXtst
];

View File

@@ -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 {