18 lines
396 B
Nix
18 lines
396 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {
|
|
config = { allowUnfree = true; };
|
|
};
|
|
parsecDesktopItem = pkgs.makeDesktopItem {
|
|
name = "parsec";
|
|
desktopName = "Parsec Gaming";
|
|
exec = "parsecd";
|
|
};
|
|
in {
|
|
environment.systemPackages = with pkgs; [
|
|
unstable.parsec-bin
|
|
parsecDesktopItem
|
|
];
|
|
}
|