This commit is contained in:
rhiannon morris 2024-12-13 18:16:33 +01:00
commit 8e3a99718f
2 changed files with 28 additions and 0 deletions

9
flake.nix Normal file
View file

@ -0,0 +1,9 @@
{ outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
i-w = nixpkgs.legacyPackages.${system}.callPackage ./inkscape-x11.nix { };
in {
apps.${system}.default =
{ type = "app"; program = "${i-w}/bin/inkscape-xwayland"; };
};
}