Files
rustlock/flake.nix
T
2026-03-26 15:45:38 +01:00

14 lines
356 B
Nix

{
description = "A high-performance Wayland screen locker written in Rust";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }: let
system = builtins.currentSystem;
pkgs = import nixpkgs { inherit system; };
in {
packages.${system}.rustlock = pkgs.callPackage ./default.nix {};
};
}