This commit is contained in:
commit
524a34d819
4 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
umask 0077
|
||||||
SUBDIR="${2:-./}"
|
SUBDIR="${2:-./}"
|
||||||
mkdir -p "$NOTES_PATH/$SUBDIR"
|
mkdir -p "$NOTES_PATH/$SUBDIR"
|
||||||
cd "$NOTES_PATH/$SUBDIR" || exit 1
|
cd "$NOTES_PATH/$SUBDIR" || exit 1
|
||||||
|
|
3
modules/home-manager/scripts/common/bin/t
Executable file
3
modules/home-manager/scripts/common/bin/t
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
N todo
|
|
@ -400,6 +400,7 @@
|
||||||
|
|
||||||
troubleshooting-tools = {pkgs, ...}: {
|
troubleshooting-tools = {pkgs, ...}: {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
iftop
|
||||||
bottom
|
bottom
|
||||||
btop
|
btop
|
||||||
dnsutils
|
dnsutils
|
||||||
|
|
|
@ -96,6 +96,10 @@ in {
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
iftop
|
||||||
|
];
|
||||||
|
|
||||||
boot.kernel.sysctl =
|
boot.kernel.sysctl =
|
||||||
sysctl-entries
|
sysctl-entries
|
||||||
// {
|
// {
|
||||||
|
|
Loading…
Reference in a new issue