mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 11:07:44 +00:00
Start refactor
This commit is contained in:
parent
99b7ccfadb
commit
06cce18e72
155 changed files with 2139 additions and 3738 deletions
58
modules/common/packages.nix
Normal file
58
modules/common/packages.nix
Normal file
|
@ -0,0 +1,58 @@
|
|||
{ config, lib, pkgs, ... }: let
|
||||
inherit (lib) optionals;
|
||||
in {
|
||||
environment.systemPackages = [
|
||||
pkgs.asciinema
|
||||
pkgs.cowsay
|
||||
pkgs.curlHTTP3
|
||||
pkgs.dig
|
||||
pkgs.doggo
|
||||
pkgs.fastfetch
|
||||
pkgs.fd
|
||||
(pkgs.fortune.override { withOffensive = true; })
|
||||
pkgs.hyperfine
|
||||
pkgs.moreutils
|
||||
pkgs.openssl
|
||||
pkgs.p7zip
|
||||
pkgs.pstree
|
||||
pkgs.rsync
|
||||
pkgs.timg
|
||||
pkgs.tree
|
||||
pkgs.uutils-coreutils-noprefix
|
||||
pkgs.yazi
|
||||
pkgs.yt-dlp
|
||||
] ++ optionals config.isLinux [
|
||||
pkgs.traceroute
|
||||
pkgs.usbutils
|
||||
pkgs.strace
|
||||
] ++ optionals config.isDesktop [
|
||||
pkgs.clang_16
|
||||
pkgs.clang-tools_16
|
||||
pkgs.deno
|
||||
pkgs.gh
|
||||
pkgs.go
|
||||
pkgs.jdk
|
||||
pkgs.lld
|
||||
pkgs.maven
|
||||
pkgs.zig
|
||||
|
||||
pkgs.element-desktop
|
||||
|
||||
pkgs.qbittorrent
|
||||
] ++ optionals (config.isLinux && config.isDesktop) [
|
||||
pkgs.thunderbird
|
||||
|
||||
pkgs.whatsapp-for-linux
|
||||
|
||||
pkgs.zulip
|
||||
pkgs.fractal
|
||||
|
||||
pkgs.obs-studio
|
||||
|
||||
pkgs.krita
|
||||
|
||||
pkgs.libreoffice
|
||||
pkgs.hunspellDicts.en_US
|
||||
pkgs.hunspellDicts.en_GB-ize
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue