1
Fork 0

Compare commits

..

No commits in common. "39ac2b5f4972de41a13433a3e97e9833096d6fe9" and "d414f9e2ce6003baee590ca4cdfba3b0a1179a5a" have entirely different histories.

5 changed files with 9 additions and 49 deletions

View File

@ -1,25 +1,19 @@
arrterian.nix-env-selector
astro-build.astro-vscode
bierner.markdown-mermaid
bpruitt-goddard.mermaid-markdown-syntax-highlighting
brunnerh.insert-unicode
catppuccin.catppuccin-vsc
catppuccin.catppuccin-vsc-icons
Catppuccin.catppuccin-vsc
Catppuccin.catppuccin-vsc-icons
denoland.vscode-deno
dongfg.vscode-beancount-formatter
eamodio.gitlens
edwinkofler.vscode-assorted-languages
EdwinKofler.vscode-assorted-languages
jnoortheen.nix-ide
jock.svg
lencerf.beancount
mechatroner.rainbow-csv
mkhl.direnv
myriad-dreamin.tinymist
nvarner.typst-lsp
oven.bun-vscode
ozaki.markdown-github-dark
pinage404.nix-extension-pack
ritwickdey.liveserver
ritwickdey.LiveServer
rust-lang.rust-analyzer
samverschueren.linter-xo
serayuzgur.crates

View File

@ -12,7 +12,6 @@
ardour
autorestic
bat
beancount
bento4
# bespokesynth
bolliedelayxt-lv2
@ -33,16 +32,13 @@
dig
direnv
distrho
dragonfly-reverb
du-dust
dupeguru
eclipses.eclipse-java
eid-mw
element-desktop
ensemble-chorus
eq10q
eza
fava
fd
ffmpeg
fire
@ -62,7 +58,6 @@
helm
hexyl
hydrogen
hybridreverb2
ifuse
imagemagick
jq
@ -92,7 +87,6 @@
nodePackages.pnpm
numlockx
nvitop
obsidian
odin2
openrazer-daemon
osu-lazer
@ -118,12 +112,12 @@
resvg
ripgrep
rkrlv2
# rnix-lsp
rnix-lsp
rofi
sorcer
sqlite-interactive
sqlitebrowser
unstable.standardnotes
standardnotes
starship
steam
string-machine
@ -138,15 +132,12 @@
tunefish
typst
typst-lsp
typstyle
unstable.atuin
unstable.turbo
unifi8
vagrant
vital
vscodium.fhs
watchexec
wine
wolf-shaper
x42-plugins
xarchiver
@ -157,11 +148,10 @@
xfce.xfce4-timer-plugin
xfce.xfce4-whiskermenu-plugin
xorg.libXcursor
xournalpp
zam-plugins
zynaddsubfx
# (callPackage ./samrewritten.nix { })
(bespokesynth-with-vst2.overrideAttrs (old: {
(callPackage ./samrewritten.nix { })
(bespokesynth.overrideAttrs (old: {
src = fetchFromGitHub {
owner = "BespokeSynth";
repo = "BespokeSynth";

View File

@ -38,10 +38,6 @@
nssmdns = true;
};
flatpak = {
enable = true;
};
pipewire = {
alsa.enable = true;
alsa.support32Bit = true;

View File

@ -113,22 +113,11 @@
"typescript",
"typescriptreact"
],
// Tinymist Typst (ID: myriad-dreamin.tinymist)
"tinymist.formatterMode": "typstyle",
"tinymist.exportPdf": "never",
// Beancount (ID: Lencerf.beancount)
"beancount.runFavaOnActivate": true,
// Beancount Formatter (ID: dongfg.vscode-beancount-formatter)
"beancountFormatter.currencyColumn": 80,
/* Language-specific overrides. */
"[astro]": {
"editor.defaultFormatter": "samverschueren.linter-xo",
"editor.formatOnSave": true
},
"[beancount]": {
"editor.rulers": [79],
"editor.formatOnSave": true
},
"[html]": {
"editor.wordWrap": "on",
"editor.defaultFormatter": "vscode.html-language-features"
@ -179,7 +168,7 @@
"editor.formatOnSave": true
},
"[typst]": {
"editor.defaultFormatter": "myriad-dreamin.tinymist",
"editor.defaultFormatter": "nvarner.typst-lsp",
"editor.formatOnSave": true
},
"[xml]": {

View File

@ -61,12 +61,3 @@ to-opus () {
ffmpeg -i "$input_file" -c:a libopus -b:a 128K "$output_file"
done
}
# Converts any given files to 128K MP3 using ffmpeg.
# to-mp3 <file ...>
to-mp3 () {
for input_file in "$@"; do
output_file="${input_file%.*}.mp3"
ffmpeg -i "$input_file" -map_metadata 0:s:a:0 -b:a 128K -y "$output_file"
done
}