added plugin folders to home manager

This commit is contained in:
2026-07-04 12:53:03 -05:00
parent e95e75d7f1
commit 6ef243ae64
2 changed files with 10 additions and 1 deletions
+10 -1
View File
@@ -1,6 +1,15 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{
home.activation.createAudioDirectories =
lib.hm.dag.entryAfter [ "writeBoundary" ] ''
mkdir -p \
"$HOME/.local/share/audio/vst" \
"$HOME/.local/share/audio/vst3" \
"$HOME/.local/share/audio/ladspa" \
"$HOME/.local/share/audio/dssi"
'';
home.packages = with pkgs; [
steam
];