obs+gpg fix

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-06-09 23:39:09 +02:00
parent 28be563a54
commit a2c8c6e4d6
8 changed files with 66 additions and 34 deletions

View File

@@ -8,6 +8,7 @@
pinentry-all
]);
# services.pcscd.enable = true;
services.gpg-agent = {
enable = true;
verbose = true;
@@ -16,7 +17,7 @@
];
enableSshSupport = true;
enableFishIntegration = true;
pinentryPackage = pkgs.pinentry-curses;
# pinentryPackage = pkgs.pinentry-gtk2;
};
home.file.".gnupg/gpg.conf".text = ''

15
home-modules/obs.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs, lib, host, ... }:
lib.mkIf (host != "NxACE")
{
# home.packages = with pkgs; [
# obs-studio
# ];
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-move-transition
obs-composite-blur
obs-backgroundremoval
];
};
}