forked from ryan4yin/nix-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
qixyuan
committed
May 18, 2024
1 parent
2fa7b95
commit 20b6057
Showing
13 changed files
with
169 additions
and
52 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
requests | ||
pyquery | ||
pyyaml | ||
boto3 | ||
|
||
## emacs's lsp-bridge dependenciesge | ||
epc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ pkgs, self, ... }: | ||
{ | ||
# Enable nix ld | ||
programs.nix-ld.enable = true; | ||
programs.nix-ld.package = pkgs.nix-ld-rs; | ||
|
||
programs.nix-ld.libraries = with pkgs; [ | ||
alsa-lib | ||
at-spi2-atk | ||
at-spi2-core | ||
atk | ||
cairo | ||
cups | ||
curl | ||
cudatoolkit | ||
dbus | ||
expat | ||
fontconfig | ||
freetype | ||
fuse3 | ||
gdk-pixbuf | ||
glib | ||
gtk3 | ||
icu | ||
libGL | ||
libappindicator-gtk3 | ||
libdrm | ||
libglvnd | ||
libnotify | ||
libpulseaudio | ||
libunwind | ||
libusb1 | ||
libuuid | ||
libxkbcommon | ||
libxml2 | ||
libkrb5 | ||
linuxPackages.nvidia_x11 | ||
mesa | ||
nspr | ||
nss | ||
ncurses5 | ||
openssl | ||
pango | ||
pipewire | ||
stdenv.cc.cc | ||
systemd | ||
vulkan-loader | ||
xorg.libX11 | ||
xorg.libXScrnSaver | ||
xorg.libXcomposite | ||
xorg.libXcursor | ||
xorg.libXdamage | ||
xorg.libXext | ||
xorg.libXfixes | ||
xorg.libXi | ||
xorg.libXrandr | ||
xorg.libXrender | ||
xorg.libXtst | ||
xorg.libxcb | ||
xorg.libxkbfile | ||
xorg.libxshmfence | ||
zlib | ||
wayland | ||
|
||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ pkgs, ... }: | ||
let | ||
ttf-ms-fonts = pkgs.callPackage ./ttf-ms-fonts.nix {}; | ||
in | ||
{ | ||
environment.systemPackages = with pkgs; [ | ||
ttf-ms-fonts | ||
]; | ||
} |
Oops, something went wrong.