Compare commits

...

4 commits

Author SHA1 Message Date
Sean Buckley
72371de9c5 increase tmux escape-time 2024-07-19 19:56:18 -04:00
Sean Buckley
9b7b459629 install gvisor 2024-07-19 19:20:16 -04:00
Sean Buckley
c791a78ddb disable wfuzz 2024-07-17 19:12:57 -04:00
Sean Buckley
180946fbbd flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/00d80d13810dbfea8ab4ed1009b09100cca86ba8' (2024-07-01)
  → 'github:NixOS/nixpkgs/693bc46d169f5af9c992095736e82c3488bf7dbb' (2024-07-14)
2024-07-17 18:50:45 -04:00
4 changed files with 9 additions and 6 deletions

View file

@ -17,11 +17,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1719848872,
"narHash": "sha256-H3+EC5cYuq+gQW8y0lSrrDZfH71LB4DAf+TDFyvwCNA=",
"lastModified": 1720957393,
"narHash": "sha256-oedh2RwpjEa+TNxhg5Je9Ch6d3W1NKi7DbRO1ziHemA=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "00d80d13810dbfea8ab4ed1009b09100cca86ba8",
"rev": "693bc46d169f5af9c992095736e82c3488bf7dbb",
"type": "github"
},
"original": {

View file

@ -128,7 +128,7 @@
set -g set-titles on
set -sa terminal-overrides ",*256color:Tc"
# escape-time reduces the time where the escape key acts as an alt key
set -s escape-time 1
set -s escape-time 10
################################################################################
# Smart pane switching with awareness of Vim splits.
# See: https://github.com/christoomey/vim-tmux-navigator

View file

@ -22,7 +22,10 @@ with lib;
virtualisation.docker = {
enable = true;
enableOnBoot = false;
daemon.settings.data-root = "/nix/persist/docker";
daemon.settings = {
data-root = "/nix/persist/docker";
runtimes.runsc.path = "${pkgs.gvisor}/bin/runsc";
};
};
# Pipewire

View file

@ -25,7 +25,7 @@ in
thc-hydra
webshells
weevely
wfuzz
# wfuzz # TODO: temporarily broken package
(runCommand "gdb" { } "install -D ${gef}/bin/gef $out/bin/gdb")
];