mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-04-03 18:14:15 +00:00
~
This commit is contained in:
parent
4a5e1f4c40
commit
1f4a53d646
5 changed files with 234 additions and 195 deletions
|
@ -107,6 +107,41 @@
|
|||
stores = [ "/home/rae/.dotfiles/secrets" ];
|
||||
};
|
||||
};
|
||||
tiny = {
|
||||
enable = true;
|
||||
settings = {
|
||||
defaults = {
|
||||
nicks = [ "roxwize" ];
|
||||
notify = "mentions";
|
||||
realname = "rae 5e";
|
||||
};
|
||||
key_map = {
|
||||
ctrl_alt_left = "tab_prev";
|
||||
ctrl_alt_right = "tab_next";
|
||||
};
|
||||
layout = "aligned";
|
||||
log_dir = "/tmp/tinylog";
|
||||
servers = [
|
||||
{
|
||||
addr = "irc.libera.chat";
|
||||
join = [
|
||||
"#wikipedia-en"
|
||||
"#wikipedia-abstract"
|
||||
"#libera"
|
||||
];
|
||||
nicks = [ "roxwize" ];
|
||||
port = 6697;
|
||||
realname = "rae 5e";
|
||||
sasl = {
|
||||
username = "roxwize";
|
||||
password.command = "pass show libera_chat";
|
||||
};
|
||||
tls = true;
|
||||
}
|
||||
];
|
||||
scrollback = 65535;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
"workbench.activityBar.location" = "bottom";
|
||||
"workbench.colorTheme" = "Catppuccin Frappé";
|
||||
"workbench.iconTheme" = "catppuccin-frappe";
|
||||
"workbench.startupEditor" = "none";
|
||||
} // builtins.listToAttrs [
|
||||
(df "css" "esbenp.prettier-vscode")
|
||||
(df "html" "esbenp.prettier-vscode")
|
||||
|
|
|
@ -67,6 +67,7 @@
|
|||
playit-agent # The playit program
|
||||
qbittorrent # Featureful free software BitTorrent client
|
||||
slack # Desktop client for Slack
|
||||
tiny # Console IRC client
|
||||
vesktop # Alternate client for Discord with Vencord built-in
|
||||
yt-dlp # Command-line tool to download videos from YouTube.com and other sites (youtube-dl fork)
|
||||
# system tools
|
||||
|
|
|
@ -13,10 +13,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
# output vasm6502, vasmm68k, and vasmz80
|
||||
|
||||
cmakeFlags = [ "-DVASM_CPU=m68k" "-DVASM_SYNTAX=psi-x" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Portable and retargetable assembler (Motorola 68000)";
|
||||
description = "Portable and retargetable assembler";
|
||||
homepage = "https://github.com/NaotoNTP/vasm-psi-x";
|
||||
license = licenses.free;
|
||||
};
|
||||
|
|
BIN
secrets/libera_chat.gpg
Normal file
BIN
secrets/libera_chat.gpg
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue