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

View File

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

View File

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

View File

@ -113,22 +113,11 @@
"typescript", "typescript",
"typescriptreact" "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. */ /* Language-specific overrides. */
"[astro]": { "[astro]": {
"editor.defaultFormatter": "samverschueren.linter-xo", "editor.defaultFormatter": "samverschueren.linter-xo",
"editor.formatOnSave": true "editor.formatOnSave": true
}, },
"[beancount]": {
"editor.rulers": [79],
"editor.formatOnSave": true
},
"[html]": { "[html]": {
"editor.wordWrap": "on", "editor.wordWrap": "on",
"editor.defaultFormatter": "vscode.html-language-features" "editor.defaultFormatter": "vscode.html-language-features"
@ -179,7 +168,7 @@
"editor.formatOnSave": true "editor.formatOnSave": true
}, },
"[typst]": { "[typst]": {
"editor.defaultFormatter": "myriad-dreamin.tinymist", "editor.defaultFormatter": "nvarner.typst-lsp",
"editor.formatOnSave": true "editor.formatOnSave": true
}, },
"[xml]": { "[xml]": {

View File

@ -61,12 +61,3 @@ to-opus () {
ffmpeg -i "$input_file" -c:a libopus -b:a 128K "$output_file" ffmpeg -i "$input_file" -c:a libopus -b:a 128K "$output_file"
done 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
}