some formatting and add neko

This commit is contained in:
sadan 2024-11-17 21:20:17 -05:00
parent 5a0e0eb481
commit b6f42fd63f
No known key found for this signature in database
3 changed files with 26 additions and 11 deletions

View file

@ -10,6 +10,8 @@ in
{ {
dev = with pkgs; [ dev = with pkgs; [
meson meson
nixfmt-rfc-style
nil
deno deno
rustup rustup
android-studio-tools android-studio-tools
@ -37,20 +39,23 @@ in
gh gh
glib glib
glibc glibc
(python312.withPackages (ps: with ps;[ (python312.withPackages (
pytesseract ps: with ps; [
pillow pytesseract
pyzbar pillow
pygobject3 pyzbar
nanoid pygobject3
loguru nanoid
evdev loguru
setuptools evdev
xlib setuptools
])) xlib
]
))
nodejs_22 nodejs_22
]; ];
gui = with pkgs; [ gui = with pkgs; [
cpkg.nekocord
cpkg.frog cpkg.frog
legcord legcord
obsidian obsidian

View file

@ -6,4 +6,10 @@ rec {
vencord = pkgs.callPackage ./vencord/package.nix { }; vencord = pkgs.callPackage ./vencord/package.nix { };
frog = pkgs.callPackage ./frog { }; frog = pkgs.callPackage ./frog { };
scripts = inputs.scripts.flakePackage pkgs; scripts = inputs.scripts.flakePackage pkgs;
nekocord = inputs.nekocord.lib.patch pkgs {
install.renameBinary = true;
version = {
content = /home/meyer/dev/ts/nekocord/dist;
};
};
} }

View file

@ -22,6 +22,10 @@
url = "github:danth/stylix"; url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nekocord = {
url = "github:PoolloverNathan/nekocord";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = outputs =
{ {