nemo: install obs studio
This commit is contained in:
parent
d40ac202fe
commit
7af8b78892
2 changed files with 16 additions and 2 deletions
|
@ -8,7 +8,16 @@
|
||||||
# Host specific user config goes here
|
# Host specific user config goes here
|
||||||
#
|
#
|
||||||
programs.ghostty.settings = {
|
programs.ghostty.settings = {
|
||||||
font-size = lib.mkForce 20;
|
font-size = lib.mkForce 18;
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.obs-studio = {
|
||||||
|
enable = true;
|
||||||
|
plugins = with pkgs; [
|
||||||
|
obs-studio-plugins.wlrobs
|
||||||
|
obs-studio-plugins.obs-vaapi
|
||||||
|
obs-studio-plugins.obs-pipewire-audio-capture
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
|
|
|
@ -10,7 +10,10 @@
|
||||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
extraModulePackages = with config.boot.kernelPackages; [ nct6687d ];
|
extraModulePackages = with config.boot.kernelPackages; [
|
||||||
|
nct6687d
|
||||||
|
v4l2loopback
|
||||||
|
];
|
||||||
initrd.availableKernelModules = [
|
initrd.availableKernelModules = [
|
||||||
"xhci_pci"
|
"xhci_pci"
|
||||||
"ahci"
|
"ahci"
|
||||||
|
@ -28,6 +31,7 @@
|
||||||
];
|
];
|
||||||
extraModprobeConfig = ''
|
extraModprobeConfig = ''
|
||||||
options nct6687 force=1
|
options nct6687 force=1
|
||||||
|
options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1
|
||||||
'';
|
'';
|
||||||
kernelParams = [ "mitigations=off" ];
|
kernelParams = [ "mitigations=off" ];
|
||||||
};
|
};
|
||||||
|
@ -169,6 +173,7 @@
|
||||||
lm_sensors
|
lm_sensors
|
||||||
# pkgs.pam_rssh
|
# pkgs.pam_rssh
|
||||||
openconnect
|
openconnect
|
||||||
|
v4l-utils
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.coolercontrol.enable = true;
|
programs.coolercontrol.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue