minor config tweaks; wireshark
This commit is contained in:
parent
0b7e888f77
commit
639240bd0c
4 changed files with 15 additions and 3 deletions
|
@ -146,11 +146,11 @@
|
||||||
./nixos/configs/dmesg.nix
|
./nixos/configs/dmesg.nix
|
||||||
./nixos/configs/printing.nix
|
./nixos/configs/printing.nix
|
||||||
./nixos/configs/virt-host.nix
|
./nixos/configs/virt-host.nix
|
||||||
|
./nixos/configs/wireshark.nix
|
||||||
./nixos/configs/mount-rsync-kate.nix
|
./nixos/configs/mount-rsync-kate.nix
|
||||||
./nixos/configs/mount-fastmail-tmllc.nix
|
./nixos/configs/mount-fastmail-tmllc.nix
|
||||||
|
|
||||||
./nixos/overlays/fixup-canon.nix
|
./nixos/overlays/fixup-canon.nix
|
||||||
|
|
||||||
#
|
#
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
12
nixos/configs/wireshark.nix
Normal file
12
nixos/configs/wireshark.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#
|
||||||
|
# Sets up wireshark.
|
||||||
|
#
|
||||||
|
{ ... }: {
|
||||||
|
programs.wireshark = {
|
||||||
|
enable = true;
|
||||||
|
usbmon.enable = true;
|
||||||
|
dumpcap.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.deprekated.extraGroups = [ "wireshark" ];
|
||||||
|
}
|
|
@ -18,6 +18,7 @@ with pkgs;
|
||||||
|
|
||||||
# Development.
|
# Development.
|
||||||
act
|
act
|
||||||
|
arduino-cli
|
||||||
go
|
go
|
||||||
rustc
|
rustc
|
||||||
bundix
|
bundix
|
||||||
|
|
|
@ -266,8 +266,7 @@ theme "solarized-dark"
|
||||||
// Require a leader key before we run any commands.
|
// Require a leader key before we run any commands.
|
||||||
default_mode "locked"
|
default_mode "locked"
|
||||||
|
|
||||||
// Uncomment this when we're used enough to the keybinds. :)
|
default_layout "compact"
|
||||||
// default_layout "compact"
|
|
||||||
|
|
||||||
// The folder in which Zellij will look for layouts
|
// The folder in which Zellij will look for layouts
|
||||||
// (Requires restart)
|
// (Requires restart)
|
||||||
|
|
Loading…
Add table
Reference in a new issue