shitcoding moment

This commit is contained in:
AlmiriQ 2025-12-01 13:47:27 +07:00
parent 8e31bd6c02
commit 58475e433e
28 changed files with 703 additions and 258 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, pkgs-unstable, ... }:
{ pkgs, pkgs-unstable, ... }:
{
nixpkgs.config.allowUnfree = true;
@ -9,12 +9,13 @@
services.desktopManager.plasma6.enable = true;
programs = {
amnezia-vpn.enable = true;
nix-ld.enable = true;
appimage = {
enable = true;
binfmt = true;
};
nekoray = {
throne = {
enable = true;
tunMode.enable = true;
};
@ -34,11 +35,8 @@
git.enable = true;
};
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1w"
];
environment.systemPackages = with pkgs; [
# Internet
# Internet
telegram-desktop
qbittorrent
nicotine-plus
@ -47,14 +45,12 @@
# media
gimp
krita
jellyfin-media-player
vlc
audacity
qpwgraph
kdePackages.kdenlive
cava
# programming
sublime4
pkgs-unstable.zed-editor
firebase-tools
bun
nodejs
@ -64,6 +60,7 @@
gnumake
cmake
gcc
nixd
# games
prismlauncher
vcmi
@ -83,19 +80,18 @@
# wine, wayland and other crutches
wineWowPackages.stable
wineWowPackages.waylandFull
xwayland-satellite
pciutils
kdePackages.wallpaper-engine-plugin
kdePackages.qtwebengine
kdePackages.xwaylandvideobridge
(pkgs.libsForQt5.callPackage ./hardware/deco01-v3-driver.nix {})
(python3.withPackages (ps: with ps; [ websockets ]))
(python3.withPackages (ps: with ps; [
websockets
(ps.torch.override { rocmSupport = true; })
]))
];
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
noto-fonts-color-emoji
nerd-fonts.fira-code
];
}
}