Use nix flakes for lutris

This commit is contained in:
joachimschmidt557 2021-08-26 13:57:16 +02:00
parent ae5c72d98c
commit ecc7d96d3f
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
2 changed files with 42 additions and 0 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "dotfiles";
outputs = { self, nixpkgs }:
let
pkgs = import nixpkgs
{
system = "x86_64-linux";
config = {
allowUnfree = true;
};
};
in
{
packages.x86_64-linux.lutris = pkgs.lutris;
};
}