mirror of
https://github.com/pabloaul/lsfg-vk-flake.git
synced 2025-08-28 03:16:30 -03:00
parent
12763fb704
commit
382a1614c0
1 changed files with 11 additions and 9 deletions
|
@ -3,11 +3,13 @@
|
||||||
|
|
||||||
outputs = { nixpkgs, ... }:
|
outputs = { nixpkgs, ... }:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ];
|
||||||
pkgs = import nixpkgs { inherit system; };
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
packages.${system}.default = pkgs.callPackage ./default.nix { };
|
packages = forAllSystems (system:
|
||||||
|
{ default = nixpkgs.legacyPackages.${system}.callPackage ./default.nix { }; }
|
||||||
|
);
|
||||||
|
|
||||||
nixosModules.default = import ./module.nix;
|
nixosModules.default = import ./module.nix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue