Compare commits
No commits in common. "97a222d350f9a3fa3074b7088c7f9c8179cc92db" and "e40757b5fbe00fb725a0318e52837781194dfa8c" have entirely different histories.
97a222d350
...
e40757b5fb
2 changed files with 16 additions and 17 deletions
|
@ -2,7 +2,6 @@
|
|||
title = "CV"
|
||||
template = "page.html"
|
||||
path = "cv"
|
||||
aliases = ["CV"]
|
||||
+++
|
||||
|
||||
{% section() %}
|
||||
|
@ -14,7 +13,7 @@ aliases = ["CV"]
|
|||
| Linux | NixOS, Arch Linux, Debian, RHEL |
|
||||
| Monitoring | Grafana + (Prometheus, Telegraf, InfluxDB), VictoraMetrics, Zabbix |
|
||||
| DevOps / Automation | Ansible, Terraform, Vagrant, Git, Jenkins |
|
||||
| Networking | VPN (IPSec, Wireguard, OpenVPN), Routing (RIP, OSPF, BGP) |
|
||||
| Networking | VPN (Wireguard, OpenVPN), Routing (RIP, OSPF, BGP) |
|
||||
| Virtualization | KVM/QEMU, Proxmox, Docker |
|
||||
| Security | Server-Hardening, Security Best Practices, Vulnerability Assessment, Encryption, GPG, LUKS, TLS |
|
||||
| Scripting & Programming | Rust, Python, JavaScript, Shell, HTML, CSS, Nix |
|
||||
|
@ -25,9 +24,12 @@ aliases = ["CV"]
|
|||
|
||||
## Certifications
|
||||
|
||||
- CompTIA Security+
|
||||
- Linux Professional Institute LPIC-1
|
||||
- Various FreeCodeCamp.org Certifications
|
||||
### Linux Professional Institute
|
||||
|
||||
- LPIC-1 (valid until 2028-02-13)
|
||||
|
||||
### FreeCodeCamp.org
|
||||
|
||||
- Data Analysis with Python
|
||||
- Scientific Computing with Python
|
||||
- Quality Assurance
|
||||
|
|
|
@ -16,10 +16,7 @@
|
|||
src = ./.;
|
||||
nativeBuildInputs = [ pkgs.zola ];
|
||||
buildPhase = "zola build";
|
||||
installPhase = ''
|
||||
mkdir -p $out/var/www
|
||||
mv public $out/var/www/cherrykitten.dev
|
||||
'';
|
||||
installPhase = "cp -r public $out";
|
||||
};
|
||||
defaultPackage = self.packages.${system}.website;
|
||||
devShell = pkgs.mkShell {
|
||||
|
|
Loading…
Reference in a new issue