17 lines
292 B
Nix
17 lines
292 B
Nix
{
|
|
description = "dotfiles";
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let
|
|
pkgs = import nixpkgs
|
|
{
|
|
system = "x86_64-linux";
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
packages.x86_64-linux.lutris = pkgs.lutris;
|
|
};
|
|
}
|