305 current 2025-01-25 21:36:27 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-25 21:36:39 -05:00
parent 89ed1c54ea
commit 49b85023ec
4 changed files with 20 additions and 1 deletions

View File

@@ -15,7 +15,7 @@
home.activation.copyScripts = lib.mkAfter ''
mkdir -p ~/.scripts
cp -r ${./scripts}/* ~/.scripts/
cp ${./nixos-rebuild.sh} ~/.scripts/
chmod -R u+w ~/.scripts/
'';

View File

@@ -273,6 +273,9 @@
### This is all aesthetic stuff
# for tiling window managers expands to the size of the window
# https://support.mozilla.org/en-US/questions/1253302
"mousewheel.with_control.action" = "1";
"layout.css.devPixelsPerPx" = 1.25;
"extensions.activeThemeID" = "firefox-compact-dark@mozilla.org";

View File

@@ -0,0 +1,16 @@
# scripts.nix
{pkgs, ...}: {
home.packages = with pkgs; [
(writeShellApplication {
name = "termbin";
runtimeInputs = with pkgs; [
netcat
];
text = ''
file=$1
cat "$1" | nc termbin.com 9999
'';
})
];
}