Add audacity + kdenlive

This commit is contained in:
2026-03-06 14:39:31 +01:00
parent 725ef8fbf3
commit 176d807e1b
3 changed files with 16 additions and 0 deletions

View File

@@ -15,6 +15,8 @@
../modules/printing.nix
../modules/docker.nix
../modules/matrix.nix
../modules/kdenlive.nix
../modules/audacity.nix
];
boot.loader.systemd-boot.enable = true;

View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
audacity
];
}

View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... } :
{
environment.systemPackages = with pkgs; [
kdePackages.kdenlive
];
}