docs: move acknowledgements to the specific code
This commit is contained in:
parent
5fb7fe5cd6
commit
c94275a12d
3 changed files with 5 additions and 6 deletions
|
@ -66,7 +66,9 @@ sops updatekeys secrets.yaml
|
||||||
# Hardening
|
# Hardening
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> Thanks to https://blog.notashelf.dev/posts/2025-03-03-insecurities-remedies-i.html for this section!
|
> Thanks to
|
||||||
|
> https://blog.notashelf.dev/posts/2025-03-03-insecurities-remedies-i.html for
|
||||||
|
> this section!
|
||||||
|
|
||||||
Systemd services where appropriate are hardened using
|
Systemd services where appropriate are hardened using
|
||||||
`systemd.services.<servicename>.serviceConfig`:
|
`systemd.services.<servicename>.serviceConfig`:
|
||||||
|
@ -86,8 +88,3 @@ Systemd services where appropriate are hardened using
|
||||||
- https://nixos-and-flakes.thiscute.world/ for teaching me about nix, nixos,
|
- https://nixos-and-flakes.thiscute.world/ for teaching me about nix, nixos,
|
||||||
flakes, and home-manager in an extremely easy to follow and well-documented
|
flakes, and home-manager in an extremely easy to follow and well-documented
|
||||||
fashion
|
fashion
|
||||||
- https://blog.notashelf.dev/posts/2025-02-24-ssh-signing-commits.html for
|
|
||||||
teaching me how to trivially sign my commits
|
|
||||||
- https://www.reddit.com/r/NixOS/comments/fsummx/comment/fm3jbcm/ for an easy
|
|
||||||
way to list all installed packages
|
|
||||||
(`nix-store --query --requisites /run/current-system | cut -d- -f2- | sort | uniq`)
|
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Mohammad Rafiq";
|
userName = "Mohammad Rafiq";
|
||||||
userEmail = "mohammadrafiq567@gmail.com";
|
userEmail = "mohammadrafiq567@gmail.com";
|
||||||
|
# Thanks to https://blog.notashelf.dev/posts/2025-02-24-ssh-signing-commits.html!
|
||||||
signing.key = "~/.ssh/id_ed25519.pub";
|
signing.key = "~/.ssh/id_ed25519.pub";
|
||||||
signing.signByDefault = true;
|
signing.signByDefault = true;
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
v = "$EDITOR";
|
v = "$EDITOR";
|
||||||
g = "git";
|
g = "git";
|
||||||
l = "eza -1lah --git --time-style '+%Y-%m-%d %H:%M'";
|
l = "eza -1lah --git --time-style '+%Y-%m-%d %H:%M'";
|
||||||
|
# Thanks to https://www.reddit.com/r/NixOS/comments/fsummx/comment/fm3jbcm/!
|
||||||
list-all-packages = "nix-store --query --requisites /run/current-system | cut -d- -f2- | sort | uniq";
|
list-all-packages = "nix-store --query --requisites /run/current-system | cut -d- -f2- | sort | uniq";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue