Disclaimer: this is a personal project to package the Artix Entertainment Launcher for Nix. I am not affiliated with Artix Entertainment in any way.
This is a flake to add the Artix Game Launcher (https://www.artix.com/downloads/artixlauncher) to your Nix or NixOS installation.
The current AppImage I am installing only works for x86_64-linux systems.
You can run it from the command line with Nix installed and flake enabled with
nix run github:jtliang24/Artix-Game-Launcher-Nix
or you can add as an input to your system configuration flake with:
flake.nix:
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
artix-game-launcher = {
url = "github:jtliang24/Artix-Game-Launcher-Nix/main";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, artix-game-launcher }@inputs: {
nixosConfigurations.hostname = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
}
configuration.nix:
{ inputs, ... } :{
...
environment.systemPackages = with pkgs; [
inputs.artix-game-launcher.packages.${pkgs.system}.default
];
...
}