92 lines
1.6 KiB
Nix
92 lines
1.6 KiB
Nix
{ lib, config, inputs, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
w3m
|
|
tmux
|
|
bc
|
|
ghc
|
|
gnumake
|
|
pciutils
|
|
ntfs3g
|
|
python3
|
|
htop
|
|
nodejs
|
|
wget
|
|
ripgrep
|
|
kbd
|
|
cachix
|
|
gcc
|
|
glibc.static
|
|
openjdk
|
|
virtmanager
|
|
tree-sitter
|
|
docker-compose
|
|
rust-bin.nightly.latest.default
|
|
clang-tools
|
|
rnix-lsp
|
|
vulkan-tools
|
|
vulkan-headers
|
|
msr-tools
|
|
steam
|
|
igrep
|
|
jq
|
|
];
|
|
|
|
programs = {
|
|
gnupg = {
|
|
agent = {
|
|
enableSSHSupport = true;
|
|
enable = true;
|
|
pinentryFlavor = "curses";
|
|
};
|
|
};
|
|
git = {
|
|
enable = true;
|
|
package = pkgs.git.override {
|
|
doInstallCheck = false;
|
|
sendEmailSupport = true;
|
|
withManual = false;
|
|
};
|
|
};
|
|
zsh = {
|
|
enable = true;
|
|
histSize = 30000;
|
|
enableCompletion = true;
|
|
enableBashCompletion = true;
|
|
syntaxHighlighting.enable = true;
|
|
autosuggestions = {
|
|
enable = true;
|
|
highlightStyle = "fg=yellow,bold";
|
|
};
|
|
ohMyZsh = {
|
|
plugins = [ "git" ];
|
|
enable = true;
|
|
};
|
|
};
|
|
dconf.enable = true;
|
|
adb.enable = true;
|
|
light.enable = true;
|
|
proxychains = {
|
|
enable = true;
|
|
chain.type = "dynamic";
|
|
proxyDNS = true;
|
|
proxies = {
|
|
remilia = {
|
|
enable = true;
|
|
type = "socks5";
|
|
host = "127.0.0.1";
|
|
port = 2217;
|
|
};
|
|
remilia4 = {
|
|
enable = true;
|
|
type = "socks4";
|
|
host = "127.0.0.1";
|
|
port = 2217;
|
|
};
|
|
};
|
|
};
|
|
slock.enable = true;
|
|
};
|
|
}
|