mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
Compare commits
4 commits
32c165b02f
...
72371de9c5
Author | SHA1 | Date | |
---|---|---|---|
|
72371de9c5 | ||
|
9b7b459629 | ||
|
c791a78ddb | ||
|
180946fbbd |
4 changed files with 9 additions and 6 deletions
|
@ -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": {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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")
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue