mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-11-01 06:10:05 +00:00
Compare commits
2 commits
616523f884
...
92c9d47900
| Author | SHA1 | Date | |
|---|---|---|---|
| 92c9d47900 | |||
| f0002727a8 |
2 changed files with 57 additions and 1 deletions
|
|
@ -29,6 +29,10 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
ghostty.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
sops.secrets.wakatime-cfg = {
|
sops.secrets.wakatime-cfg = {
|
||||||
format = "binary";
|
format = "binary";
|
||||||
sopsFile = ./secrets/wakatime.cfg;
|
sopsFile = ./secrets/wakatime.cfg;
|
||||||
|
|
@ -37,7 +41,6 @@
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
## GENERAL
|
## GENERAL
|
||||||
ghostty
|
|
||||||
teams-for-linux
|
teams-for-linux
|
||||||
enpass
|
enpass
|
||||||
youtube-music
|
youtube-music
|
||||||
|
|
|
||||||
|
|
@ -59,11 +59,64 @@ in
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
# Dynamic libraries for unpackaged programs
|
# Dynamic libraries for unpackaged programs
|
||||||
|
# Use nix run github:mic92/nix-index-database libName.so to find the correct Nix packages
|
||||||
programs.nix-ld = mkIf cfg.use-nixld {
|
programs.nix-ld = mkIf cfg.use-nixld {
|
||||||
enable = true;
|
enable = true;
|
||||||
libraries = with pkgs; [
|
libraries = with pkgs; [
|
||||||
|
# Core
|
||||||
glibc
|
glibc
|
||||||
libcxx
|
libcxx
|
||||||
|
expat
|
||||||
|
nspr
|
||||||
|
nss
|
||||||
|
|
||||||
|
# Rendering / graphics
|
||||||
|
mesa
|
||||||
|
libglvnd
|
||||||
|
libdrm
|
||||||
|
libgbm
|
||||||
|
xorg.libxshmfence
|
||||||
|
|
||||||
|
# X11 stack
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libxcb
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXfixes
|
||||||
|
xorg.libXrandr
|
||||||
|
xorg.libXcomposite
|
||||||
|
xorg.libXdamage
|
||||||
|
xorg.libXcursor
|
||||||
|
xorg.libXinerama
|
||||||
|
xorg.libXi
|
||||||
|
xorg.libXtst
|
||||||
|
|
||||||
|
# Input / keyboard
|
||||||
|
libxkbcommon
|
||||||
|
|
||||||
|
# Wayland (optional)
|
||||||
|
wayland
|
||||||
|
|
||||||
|
# GTK / accessibility stack
|
||||||
|
glib
|
||||||
|
dbus
|
||||||
|
at-spi2-core
|
||||||
|
at-spi2-atk
|
||||||
|
gtk3
|
||||||
|
gdk-pixbuf
|
||||||
|
pango
|
||||||
|
cairo
|
||||||
|
|
||||||
|
# Printing
|
||||||
|
cups
|
||||||
|
|
||||||
|
# Fonts / text
|
||||||
|
freetype
|
||||||
|
fontconfig
|
||||||
|
harfbuzz
|
||||||
|
|
||||||
|
# Sound
|
||||||
|
alsa-lib
|
||||||
|
pulseaudio
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue