Compare commits

..

No commits in common. "97a222d350f9a3fa3074b7088c7f9c8179cc92db" and "e40757b5fbe00fb725a0318e52837781194dfa8c" have entirely different histories.

2 changed files with 16 additions and 17 deletions

View file

@ -2,7 +2,6 @@
title = "CV" title = "CV"
template = "page.html" template = "page.html"
path = "cv" path = "cv"
aliases = ["CV"]
+++ +++
{% section() %} {% section() %}
@ -14,7 +13,7 @@ aliases = ["CV"]
| Linux | NixOS, Arch Linux, Debian, RHEL | | Linux | NixOS, Arch Linux, Debian, RHEL |
| Monitoring | Grafana + (Prometheus, Telegraf, InfluxDB), VictoraMetrics, Zabbix | | Monitoring | Grafana + (Prometheus, Telegraf, InfluxDB), VictoraMetrics, Zabbix |
| DevOps / Automation | Ansible, Terraform, Vagrant, Git, Jenkins | | 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 | | Virtualization | KVM/QEMU, Proxmox, Docker |
| Security | Server-Hardening, Security Best Practices, Vulnerability Assessment, Encryption, GPG, LUKS, TLS | | Security | Server-Hardening, Security Best Practices, Vulnerability Assessment, Encryption, GPG, LUKS, TLS |
| Scripting & Programming | Rust, Python, JavaScript, Shell, HTML, CSS, Nix | | Scripting & Programming | Rust, Python, JavaScript, Shell, HTML, CSS, Nix |
@ -25,17 +24,20 @@ aliases = ["CV"]
## Certifications ## Certifications
- CompTIA Security+ ### Linux Professional Institute
- Linux Professional Institute LPIC-1
- Various FreeCodeCamp.org Certifications - LPIC-1 (valid until 2028-02-13)
- Data Analysis with Python
- Scientific Computing with Python ### FreeCodeCamp.org
- Quality Assurance
- Data Visualization - Data Analysis with Python
- Back End Development and APIs - Scientific Computing with Python
- Front End Development Libraries - Quality Assurance
- JavaScript Algorithms and Data Structures - Data Visualization
- Responsive Web Design - Back End Development and APIs
- Front End Development Libraries
- JavaScript Algorithms and Data Structures
- Responsive Web Design
{% end %} {% end %}

View file

@ -16,10 +16,7 @@
src = ./.; src = ./.;
nativeBuildInputs = [ pkgs.zola ]; nativeBuildInputs = [ pkgs.zola ];
buildPhase = "zola build"; buildPhase = "zola build";
installPhase = '' installPhase = "cp -r public $out";
mkdir -p $out/var/www
mv public $out/var/www/cherrykitten.dev
'';
}; };
defaultPackage = self.packages.${system}.website; defaultPackage = self.packages.${system}.website;
devShell = pkgs.mkShell { devShell = pkgs.mkShell {