Updated system

This commit is contained in:
Emmet 2025-11-15 16:50:38 -06:00
parent ab7221fba9
commit 6f52c1d453
8 changed files with 312 additions and 264 deletions

View file

@ -1,8 +1,15 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
pkgs-stable,
...
}:
let
cfg = config.userSettings.recording;
in {
in
{
options = {
userSettings.recording = {
enable = lib.mkEnableOption "Enable studio recording and editing programs";
@ -16,10 +23,9 @@ in {
obs-vaapi
obs-scale-to-sound
];
home.packages = with pkgs; [
home.packages = with pkgs-stable; [
kdePackages.kdenlive
tenacity
ardour
#tenacity
];
};
}