mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Gaming+Flake] add suyu flake and add back yuzu using suyu fork
This commit is contained in:
parent
48136970db
commit
470e333d00
2 changed files with 9 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, lib, myLib, ... }:
|
{ config, pkgs, lib, myLib, suyu, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.aviallon.desktop;
|
cfg = config.aviallon.desktop;
|
||||||
|
|
@ -12,10 +12,10 @@ in {
|
||||||
enable = mkEnableOption "gaming features";
|
enable = mkEnableOption "gaming features";
|
||||||
emulation = mkEnableOption "console emulators";
|
emulation = mkEnableOption "console emulators";
|
||||||
yuzu.package = mkOption {
|
yuzu.package = mkOption {
|
||||||
description = "Yuzu switch emulator package";
|
|
||||||
type = with types; package;
|
type = with types; package;
|
||||||
|
description = "Yuzu switch emulator package. WARNING: removed from nixpkgs";
|
||||||
example = pkgs.yuzu-early-access;
|
example = pkgs.yuzu-early-access;
|
||||||
default = pkgs.unstable.yuzu-early-access;
|
default = suyu.packages.${builtins.currentSystem}.suyu;
|
||||||
};
|
};
|
||||||
ryujinx.package = mkOption {
|
ryujinx.package = mkOption {
|
||||||
description = "Ryujinx Switch emulator package";
|
description = "Ryujinx Switch emulator package";
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,11 @@
|
||||||
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
|
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
|
||||||
|
|
||||||
nur.url = "github:nix-community/NUR";
|
nur.url = "github:nix-community/NUR";
|
||||||
|
suyu = {
|
||||||
|
url = "github:Noodlez1232/suyu-flake";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
inputs.flake-utils.follows = "flake-utils";
|
||||||
|
};
|
||||||
|
|
||||||
fps.url = "github:wamserma/flake-programs-sqlite";
|
fps.url = "github:wamserma/flake-programs-sqlite";
|
||||||
fps.inputs.nixpkgs.follows = "nixpkgs";
|
fps.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
@ -23,6 +28,7 @@
|
||||||
, nixpkgs-unstable
|
, nixpkgs-unstable
|
||||||
, fps
|
, fps
|
||||||
, sddm-unstable
|
, sddm-unstable
|
||||||
|
, suyu
|
||||||
, ...
|
, ...
|
||||||
}: let
|
}: let
|
||||||
lib = nixpkgs.lib;
|
lib = nixpkgs.lib;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue