feat: initial working state

This commit is contained in:
atagen 2025-06-18 16:53:35 +10:00
commit b76036038e
8 changed files with 1538 additions and 0 deletions

10
default.nix Normal file
View file

@ -0,0 +1,10 @@
{
buildRustPackage,
niri,
}:
buildRustPackage (finalAttrs: {
pname = "niri-tag";
version = (builtins.fromTOML (builtins.readFile ./Cargo.toml)).package.version;
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
})