restructure

This commit is contained in:
2026-07-29 23:48:23 +02:00
parent 2c218aef72
commit 03a85fc670
9 changed files with 120 additions and 95 deletions
+27 -19
View File
@@ -1,22 +1,30 @@
{ pkgs, ... }: {
environment.systemPackages = (with pkgs; [
wget
nixfmt
tree-sitter
lsof
exiftool
trash-cli
ffmpeg
unzip
scdl
aria2
nodejs
gomi
bun
croc
mp3val
flac
(python314.withPackages(ps: with ps; [ requests python-dotenv ]))
]);
environment.systemPackages = (
with pkgs;
[
wget
nixfmt
tree-sitter
lsof
exiftool
trash-cli
ffmpeg
unzip
scdl
aria2
nodejs
gomi
bun
croc
mp3val
flac
(python314.withPackages (
ps: with ps; [
requests
python-dotenv
]
))
]
);
}