305 current 2025-01-25 21:36:27 25.05.20241217.d3c42f1 6.6.66 *
This commit is contained in:
@@ -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/
|
||||
'';
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
16
home/scripts/termbin/tb.nix
Normal file
16
home/scripts/termbin/tb.nix
Normal 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
|
||||
'';
|
||||
})
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user