lsfg-vk-ui: init

This commit is contained in:
Nojus 2025-07-27 02:14:25 +02:00
parent 0b57544e47
commit a796344ac2
4 changed files with 82 additions and 24 deletions

View file

@ -6,9 +6,11 @@
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ];
in
{
packages = forAllSystems (system:
{ default = nixpkgs.legacyPackages.${system}.callPackage ./default.nix { }; }
);
packages = forAllSystems (system: {
default = nixpkgs.legacyPackages.${system}.callPackage ./lsfg-vk.nix { };
lsfg-vk = nixpkgs.legacyPackages.${system}.callPackage ./lsfg-vk.nix { };
lsfg-vk-ui = nixpkgs.legacyPackages.${system}.callPackage ./lsfg-vk-ui.nix { };
});
nixosModules.default = import ./module.nix;
};