mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 11:13:30 -05:00
some formatting and add neko
This commit is contained in:
parent
5a0e0eb481
commit
b6f42fd63f
3 changed files with 26 additions and 11 deletions
|
@ -10,6 +10,8 @@ in
|
|||
{
|
||||
dev = with pkgs; [
|
||||
meson
|
||||
nixfmt-rfc-style
|
||||
nil
|
||||
deno
|
||||
rustup
|
||||
android-studio-tools
|
||||
|
@ -37,20 +39,23 @@ in
|
|||
gh
|
||||
glib
|
||||
glibc
|
||||
(python312.withPackages (ps: with ps;[
|
||||
pytesseract
|
||||
pillow
|
||||
pyzbar
|
||||
pygobject3
|
||||
nanoid
|
||||
loguru
|
||||
evdev
|
||||
setuptools
|
||||
xlib
|
||||
]))
|
||||
(python312.withPackages (
|
||||
ps: with ps; [
|
||||
pytesseract
|
||||
pillow
|
||||
pyzbar
|
||||
pygobject3
|
||||
nanoid
|
||||
loguru
|
||||
evdev
|
||||
setuptools
|
||||
xlib
|
||||
]
|
||||
))
|
||||
nodejs_22
|
||||
];
|
||||
gui = with pkgs; [
|
||||
cpkg.nekocord
|
||||
cpkg.frog
|
||||
legcord
|
||||
obsidian
|
||||
|
|
|
@ -6,4 +6,10 @@ rec {
|
|||
vencord = pkgs.callPackage ./vencord/package.nix { };
|
||||
frog = pkgs.callPackage ./frog { };
|
||||
scripts = inputs.scripts.flakePackage pkgs;
|
||||
nekocord = inputs.nekocord.lib.patch pkgs {
|
||||
install.renameBinary = true;
|
||||
version = {
|
||||
content = /home/meyer/dev/ts/nekocord/dist;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -22,6 +22,10 @@
|
|||
url = "github:danth/stylix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nekocord = {
|
||||
url = "github:PoolloverNathan/nekocord";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
outputs =
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue