winapps/flake.nix
Oskar Manhart da35923df9 feat: package winapps & the winapps launcher using nix
doc: document installation using Nix

fix: explicitely specify path to inquirer

fix: libvirt group is called libvirtd on nix

fix: set libvirturl for winapps-launcher

fix: refine group change sed expr

feat: add desktop file

fix: do not use source derivation

fix: use install instead of cp

fix: ensure  exists
2024-09-07 10:49:40 +02:00

25 lines
567 B
Nix

{
description = "WinApps Nix packages & NixOS module";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system: let
pkgs = import nixpkgs {inherit system;};
in {
formatter = pkgs.alejandra;
packages.winapps = pkgs.callPackage ./packages/winapps {};
packages.winapps-launcher = pkgs.callPackage ./packages/winapps-launcher {};
}
);
}