diff --git a/content/daily/2025-06-07.md b/content/daily/2025-06-07.md new file mode 100644 index 0000000..d76a83e --- /dev/null +++ b/content/daily/2025-06-07.md @@ -0,0 +1,15 @@ ++++ +title = "init post" +date = 2025-06-07 ++++ + +This is my first daily message, posted in the afternoon rather than the morning. In the future, all fo these will be posted when I wake up. + +Let's do some about me. +I use nixos with limine, ly, xmonad, qutebrowser, and nvf on the day-to-day. I program in haskell, elm, nix, and rust. Functional programming for the win! My vps is also nixos, and it's so convenient to share my home-manager config between the two! + +### Links +All sites are built %100 declatatively with Nix. +- [My rgit server](https://git.mtgmonkey.net), which hosts all my repos, including that for this site and for my pet site. +- [My blog](https://blog.mtgmonkey.net), which you are reading now. +- [My pet site](https://mtgmonkey.net), Elmskell, which has a Haskell Scotty backend with an Elm frontend. diff --git a/content/daily/_index.md b/content/daily/_index.md new file mode 100644 index 0000000..8799f36 --- /dev/null +++ b/content/daily/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Daily Posts" +sort_by = "date" +template = "blog.html" +page_template = "blog_page.html" ++++ diff --git a/flake.nix b/flake.nix index ed96b63..283d7a1 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,9 @@ }; outputs = {nixpkgs, ...}: let system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages.${system}; + pkgs = import nixpkgs { + inherit system; + }; in { packages.${system} = { default = pkgs.callPackage ./package.nix {}; diff --git a/package.nix b/package.nix index 40ac872..3fcd14a 100644 --- a/package.nix +++ b/package.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { zola ]; configurePhase = '' - zola check + # zola check ''; buildPhase = '' zola build diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..4f82054 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,14 @@ + + +
+ +{{ page.date }}
+{{ page.content | safe }} +{% endblock content %} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..1c2bb5f --- /dev/null +++ b/templates/index.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} + +{% block content %} +