tome export
This commit is contained in:
parent
52278c3a53
commit
7a52afab5f
960 changed files with 3670 additions and 2229 deletions
|
@ -82,15 +82,15 @@
|
|||
],
|
||||
"body": [
|
||||
{
|
||||
"value": "\n <p>Yesterday, I wrote about <a href=\"/daily\/2024\/11\/25\/nix-the-package-manager\">Nix the package manager<\/a>.<\/p>\n\n<p>To use it, you need to write code in the Nix language in .nix files.<\/p>\n\n<p>To see an example, you can see <a href=\"https:\/\/github.com\/opdavies\/dotfiles\/tree\/main\/nix\">my dotfiles on GitHub<\/a> as well as lots of other people's that they've published.<\/p>\n\n<p>It's a functional language so some of the concepts were new to me, but I picked it up fairly quickly and learned some of the paradigms and conventions.<\/p>\n\n<p>This is the code that installs Nginx on my server:<\/p>\n\n<pre><code class=\"nix\">services.nginx = {\n enable = true;\n serverNamesHashBucketSize = 256;\n};\n<\/code><\/pre>\n\n<p>These are some of the packages I have installed on my laptop:<\/p>\n\n<pre><code class=\"nix\">environment.systemPackages = with pkgs: {\n devenv\n dog\n git\n go\n jq\n php\n phpPackages.composer\n pv\n tldr\n}\n<\/code><\/pre>\n\n<p>And this is how to configure processes <a href=\"/daily\/2024\/11\/11\/could-nix-and-devenv-replace-docker-compose\">in a devenv configuration<\/a>, which is built with Nix:<\/p>\n\n<pre><code class=\"nix\">processes = {\n tailwind.exec = ''\n cd ${drupal.theme.path}\n watchexec --exts css,twig tailwindcss --config assets\/tailwind.config.ts \\\n --output dist\/tailwind.css\n '';\n};\n<\/code><\/pre>\n\n<p>Once you have written the configuration, you can run it and install what you've specified, and it will do it the same way every time.<\/p>\n\n<p>For a crash course in the Nix language, take a look at <a href=\"https:\/\/zero-to-nix.com\/concepts\/nix-language\">https:\/\/zero-to-nix.com\/concepts\/nix-language<\/a> or one of the many open-sourced configurations on GitHub.<\/p>\n\n ",
|
||||
"value": "\n <p>Yesterday, I wrote about <a href=\"\/daily\/2024\/11\/25\/nix-the-package-manager\">Nix the package manager<\/a>.<\/p>\n\n<p>To use it, you need to write code in the Nix language in .nix files.<\/p>\n\n<p>To see an example, you can see <a href=\"https:\/\/github.com\/opdavies\/dotfiles\/tree\/main\/nix\">my dotfiles on GitHub<\/a> as well as lots of other people's that they've published.<\/p>\n\n<p>It's a functional language so some of the concepts were new to me, but I picked it up fairly quickly and learned some of the paradigms and conventions.<\/p>\n\n<p>This is the code that installs Nginx on my server:<\/p>\n\n<pre><code class=\"nix\">services.nginx = {\n enable = true;\n serverNamesHashBucketSize = 256;\n};\n<\/code><\/pre>\n\n<p>These are some of the packages I have installed on my laptop:<\/p>\n\n<pre><code class=\"nix\">environment.systemPackages = with pkgs: {\n devenv\n dog\n git\n go\n jq\n php\n phpPackages.composer\n pv\n tldr\n}\n<\/code><\/pre>\n\n<p>And this is how to configure processes <a href=\"\/daily\/2024\/11\/11\/could-nix-and-devenv-replace-docker-compose\">in a devenv configuration<\/a>, which is built with Nix:<\/p>\n\n<pre><code class=\"nix\">processes = {\n tailwind.exec = ''\n cd ${drupal.theme.path}\n watchexec --exts css,twig tailwindcss --config assets\/tailwind.config.ts \\\n --output dist\/tailwind.css\n '';\n};\n<\/code><\/pre>\n\n<p>Once you have written the configuration, you can run it and install what you've specified, and it will do it the same way every time.<\/p>\n\n<p>For a crash course in the Nix language, take a look at <a href=\"https:\/\/zero-to-nix.com\/concepts\/nix-language\">https:\/\/zero-to-nix.com\/concepts\/nix-language<\/a> or one of the many open-sourced configurations on GitHub.<\/p>\n\n ",
|
||||
"format": "full_html",
|
||||
"processed": "\n <p>Yesterday, I wrote about <a href=\"/daily\/2024\/11\/25\/nix-the-package-manager\">Nix the package manager<\/a>.<\/p>\n\n<p>To use it, you need to write code in the Nix language in .nix files.<\/p>\n\n<p>To see an example, you can see <a href=\"https:\/\/github.com\/opdavies\/dotfiles\/tree\/main\/nix\">my dotfiles on GitHub<\/a> as well as lots of other people's that they've published.<\/p>\n\n<p>It's a functional language so some of the concepts were new to me, but I picked it up fairly quickly and learned some of the paradigms and conventions.<\/p>\n\n<p>This is the code that installs Nginx on my server:<\/p>\n\n<pre><code class=\"nix\">services.nginx = {\n enable = true;\n serverNamesHashBucketSize = 256;\n};\n<\/code><\/pre>\n\n<p>These are some of the packages I have installed on my laptop:<\/p>\n\n<pre><code class=\"nix\">environment.systemPackages = with pkgs: {\n devenv\n dog\n git\n go\n jq\n php\n phpPackages.composer\n pv\n tldr\n}\n<\/code><\/pre>\n\n<p>And this is how to configure processes <a href=\"/daily\/2024\/11\/11\/could-nix-and-devenv-replace-docker-compose\">in a devenv configuration<\/a>, which is built with Nix:<\/p>\n\n<pre><code class=\"nix\">processes = {\n tailwind.exec = ''\n cd ${drupal.theme.path}\n watchexec --exts css,twig tailwindcss --config assets\/tailwind.config.ts \\\n --output dist\/tailwind.css\n '';\n};\n<\/code><\/pre>\n\n<p>Once you have written the configuration, you can run it and install what you've specified, and it will do it the same way every time.<\/p>\n\n<p>For a crash course in the Nix language, take a look at <a href=\"https:\/\/zero-to-nix.com\/concepts\/nix-language\">https:\/\/zero-to-nix.com\/concepts\/nix-language<\/a> or one of the many open-sourced configurations on GitHub.<\/p>\n\n ",
|
||||
"processed": "\n <p>Yesterday, I wrote about <a href=\"http:\/\/default\/daily\/2024\/11\/25\/nix-the-package-manager\">Nix the package manager<\/a>.<\/p>\n\n<p>To use it, you need to write code in the Nix language in .nix files.<\/p>\n\n<p>To see an example, you can see <a href=\"https:\/\/github.com\/opdavies\/dotfiles\/tree\/main\/nix\">my dotfiles on GitHub<\/a> as well as lots of other people's that they've published.<\/p>\n\n<p>It's a functional language so some of the concepts were new to me, but I picked it up fairly quickly and learned some of the paradigms and conventions.<\/p>\n\n<p>This is the code that installs Nginx on my server:<\/p>\n\n<pre><code class=\"nix\">services.nginx = {\n enable = true;\n serverNamesHashBucketSize = 256;\n};\n<\/code><\/pre>\n\n<p>These are some of the packages I have installed on my laptop:<\/p>\n\n<pre><code class=\"nix\">environment.systemPackages = with pkgs: {\n devenv\n dog\n git\n go\n jq\n php\n phpPackages.composer\n pv\n tldr\n}\n<\/code><\/pre>\n\n<p>And this is how to configure processes <a href=\"http:\/\/default\/daily\/2024\/11\/11\/could-nix-and-devenv-replace-docker-compose\">in a devenv configuration<\/a>, which is built with Nix:<\/p>\n\n<pre><code class=\"nix\">processes = {\n tailwind.exec = ''\n cd ${drupal.theme.path}\n watchexec --exts css,twig tailwindcss --config assets\/tailwind.config.ts \\\n --output dist\/tailwind.css\n '';\n};\n<\/code><\/pre>\n\n<p>Once you have written the configuration, you can run it and install what you've specified, and it will do it the same way every time.<\/p>\n\n<p>For a crash course in the Nix language, take a look at <a href=\"https:\/\/zero-to-nix.com\/concepts\/nix-language\">https:\/\/zero-to-nix.com\/concepts\/nix-language<\/a> or one of the many open-sourced configurations on GitHub.<\/p>\n\n ",
|
||||
"summary": null
|
||||
}
|
||||
],
|
||||
"feeds_item": [
|
||||
{
|
||||
"imported": "1970-01-01T00:33:45+00:00",
|
||||
"imported": "1970-01-01T00:32:50+00:00",
|
||||
"guid": null,
|
||||
"hash": "7cd6f305207bb1a29052636f877e416e",
|
||||
"target_type": "feeds_feed",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue