Added obs and useful links section to README
This commit is contained in:
@@ -139,7 +139,7 @@ in {
|
||||
"ebay".metaData.hidden = true;
|
||||
};
|
||||
search.force = true;
|
||||
search.default = "SearXNG";
|
||||
search.default = "ddg";
|
||||
|
||||
settings = {
|
||||
"browser.disableResetPrompt" = true;
|
||||
|
23
modules/home/applications/obs-studio.nix
Normal file
23
modules/home/applications/obs-studio.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ config, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.settings.applications.obs-studio;
|
||||
in {
|
||||
options = {
|
||||
settings.applications.obs-studio.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
description = ''
|
||||
Enable obs studio with optional plugins
|
||||
'';
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.obs-studio = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
@@ -16,6 +16,7 @@
|
||||
./applications/wezterm.nix
|
||||
./applications/nushell.nix
|
||||
./applications/typst.nix
|
||||
./applications/obs-studio.nix
|
||||
|
||||
./services/nextcloud.nix
|
||||
./services/podman.nix
|
||||
|
Reference in New Issue
Block a user