diff --git a/README.md b/README.md index 0adead1..3491a2e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Webseite von Jan Kremer -[Webseite](https://jankremer.eu) +[Webseite](https://jankremer.de) ## Lizenz -CC0 1.0 | Jan Kremer | 2021–2025 +CC0 1.0 | Jan Kremer | 2021–2026 diff --git a/content/about.md b/content/about.md index 775e8a3..6695b6a 100644 --- a/content/about.md +++ b/content/about.md @@ -10,4 +10,4 @@ Wenn ich nicht gerade lerne, mache ich gerne Sport, vor allem Joggen, Kraftsport ## Kontakt -[mail@jankremer.eu](mailto:mail@jankremer.eu) +[mail@jankremer.de](mailto:mail@jankremer.de) diff --git a/content/blog/still-self-hosting.md b/content/blog/still-self-hosting.md new file mode 100644 index 0000000..4035f98 --- /dev/null +++ b/content/blog/still-self-hosting.md @@ -0,0 +1,8 @@ ++++ +title = "Still self hosting" +date = 2025-04-14 +description = "Guess who's back" +tags = [ "selbsthosting", "nixos", "git" ] ++++ + +About a year ago I wrote a post about my self hosting journey which ended with me shutting down my server diff --git a/content/btc.md b/content/btc.md index 7f31670..c5511a3 100644 --- a/content/btc.md +++ b/content/btc.md @@ -17,9 +17,9 @@ bc1qf8qjt4gut2la8k4v3emfv7wrj6f3pfcjrj3slplnwrldkz7hqmaqaju7ym ## OpenAlias ```txt -jankremer.eu +jankremer.de ``` ```txt -btc.jankremer.eu +btc.jankremer.de ``` diff --git a/content/eth.md b/content/eth.md index 7f0cb51..9ebd6ca 100644 --- a/content/eth.md +++ b/content/eth.md @@ -17,5 +17,5 @@ tags = [ "crypto" ] ## ENS ```txt -jankremer.eu +jankremer.de ``` diff --git a/content/xmr.md b/content/xmr.md index 4075a79..e1789f6 100644 --- a/content/xmr.md +++ b/content/xmr.md @@ -17,9 +17,9 @@ tags = [ "crypto" ] ## OpenAlias ```txt -jankremer.eu +jankremer.de ``` ```txt -xmr.jankremer.eu +xmr.jankremer.de ``` diff --git a/flake.nix b/flake.nix index a0b741c..424ac44 100644 --- a/flake.nix +++ b/flake.nix @@ -42,8 +42,8 @@ default = { type = "app"; meta = { - description = "Build my blog"; - homepage = "https://jankremer.eu"; + description = "Build website"; + homepage = "https://jankremer.de"; license = nixpkgs.lib.licenses.cc0; }; program = @@ -55,17 +55,15 @@ deploy = { type = "app"; meta = { - description = "Deploy to Codeberg"; - homepage = "https://kremer.codeberg.page"; + description = "Deploy to nimbus (Oracle)"; + homepage = "https://jankremer.de"; license = nixpkgs.lib.licenses.cc0; }; program = (pkgs.writeShellScript "deploy-website" '' set -e ${pkgs.zola}/bin/zola build --minify - cd public - git commit --all -m "Deploy" - git push + ${pkgs.rsync}/bin/rsync -avP --delete public/ jan@jankremer.de:/var/www/jankremer.de/ '').outPath; }; }); diff --git a/zola.toml b/zola.toml index b094735..004c09b 100644 --- a/zola.toml +++ b/zola.toml @@ -1,5 +1,5 @@ # The URL the site will be built for -base_url = "https://jankremer.eu" +base_url = "https://jankremer.de" title = "Jan Kremer" description = "Blog von Jan Kremer"