sourcephile
/
git
/
julm
/
julm-nix.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
pastel: enable on essential profile
[julm/julm-nix.git]
/
home-manager
/
profiles
/
audio.nix
1
{
2
pkgs,
3
lib,
4
nixosConfig,
5
...
6
}:
7
{
8
imports = [
9
./yt-dlp.nix
10
];
11
home.packages =
12
[
13
#pkgs.ffmpeg-full
14
#pkgs.gnuplot
15
pkgs.inotify-tools
16
pkgs.opusTools
17
pkgs.sox
18
]
19
++ lib.optionals nixosConfig.services.xserver.enable [
20
pkgs.easyeffects
21
pkgs.friture
22
#pkgs.jaaa
23
#pkgs.quisk
24
pkgs.tenacity
25
];
26
}