stuff
This commit is contained in:
parent
60f8850908
commit
56c97b3712
9 changed files with 28 additions and 88 deletions
21
profiles/gaming/retroarch.nix
Normal file
21
profiles/gaming/retroarch.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.profiles.gaming;
|
||||
in
|
||||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages =
|
||||
let
|
||||
retroarch = pkgs.retroarch.withCores (cores: [
|
||||
cores.parallel-n64
|
||||
cores.dolphin
|
||||
]);
|
||||
in
|
||||
[ retroarch ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue