nixos/gpu-screen-recorder: format with nixfmt-rfc-style

This commit is contained in:
DontEatOreo
2024-10-06 15:27:45 +03:00
parent c46ef12665
commit 8d564190a9
@@ -1,14 +1,20 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.gpu-screen-recorder;
package = cfg.package.override {
inherit (config.security) wrapperDir;
};
in {
in
{
options = {
programs.gpu-screen-recorder = {
package = lib.mkPackageOption pkgs "gpu-screen-recorder" {};
package = lib.mkPackageOption pkgs "gpu-screen-recorder" { };
enable = lib.mkOption {
type = lib.types.bool;