Added flake description and nixosConfigurations.vm ouput
nixosConfigurations.vm to be used to test invoiceninja-desktop in a VM
This commit is contained in:
parent
c4dc6ed971
commit
db62676282
@ -1,4 +1,6 @@
|
|||||||
{
|
{
|
||||||
|
description = "Invoice Ninja desktop package.";
|
||||||
|
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
@ -18,6 +20,11 @@
|
|||||||
);
|
);
|
||||||
in
|
in
|
||||||
rec {
|
rec {
|
||||||
|
nixosConfigurations.vm = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = [ ./vm ];
|
||||||
|
};
|
||||||
|
|
||||||
overlays.default = final: prev: { invoiceninja-desktop = final.callPackage ./package.nix { }; };
|
overlays.default = final: prev: { invoiceninja-desktop = final.callPackage ./package.nix { }; };
|
||||||
|
|
||||||
packages = forEachSystem (system: {
|
packages = forEachSystem (system: {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user