1
0

Compare commits

..

2 Commits

Author SHA1 Message Date
ec1e722a47 set up new ed25519 ssh keys 2026-02-17 09:32:28 -08:00
2741e0e102 packages: add ragenix 2026-02-17 08:57:46 -08:00
8 changed files with 5 additions and 16 deletions

View File

@@ -125,10 +125,7 @@ in
markdown-ts-mode # Markdown with tree-sitter parsing
mermaid-ts-mode # Mermaid diagram syntax with tree-sitter
scala-ts-mode # Scala with tree-sitter (alternative to scala-mode)
kotlin-ts-mode # Kotlin programming with tree-sitter
swift-ts-mode # Swift programming with tree-sitter
typst-ts-mode # Typst typesetting with tree-sitter
zig-ts-mode # Zig programming with tree-sitter
];
extraConfig = builtins.readFile ./emacs/custom.el + ''

View File

@@ -20,31 +20,25 @@ pkgs.symlinkJoin {
(pkgs.writeShellApplication {
name = ",zipdir";
runtimeInputs = [ pkgs.zip ];
text = builtins.readFile ./zipdir.sh;
text = builtins.readFile ./zipdir;
})
(pkgs.writeShellApplication {
name = ",split-1G";
runtimeInputs = [ pkgs.coreutils ];
text = builtins.readFile ./split-1G.sh;
text = builtins.readFile ./split-1G;
})
(pkgs.writeShellApplication {
name = ",pushover-send";
runtimeInputs = [ pkgs.curl ];
text = builtins.readFile ./pushover-send.sh;
text = builtins.readFile ./pushover-send;
})
(pkgs.writeShellApplication {
name = ",xz";
runtimeInputs = [ pkgs.xz ];
text = builtins.readFile ./xz.sh;
})
(pkgs.writeShellApplication {
name = ",yt-dlp";
runtimeInputs = [ pkgs.nix ];
text = builtins.readFile ./yt-dlp.sh;
text = builtins.readFile ./xz;
})
];
}

View File

@@ -1,3 +0,0 @@
#!/bin/sh
exec nix run nixpkgs/nixpkgs-unstable#yt-dlp -- "$@"

View File

@@ -111,6 +111,7 @@
# --- KERNEL AND SYSTEM ---
config.boot.kernelPackages.cpupower # CPU frequency utilities
ragenix # Age-encrypted secrets management (agenix reimplementation)
# --- NETWORK ADMINISTRATION ---