15 lines
177 B
Nix
15 lines
177 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
unstable,
|
|
inputs,
|
|
nix-your-shell,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs.gpu-screen-recorder = {
|
|
enable = true;
|
|
package = unstable.gpu-screen-recorder;
|
|
};
|
|
}
|