Yes I'm npub1l3dgvd8pvmmg44ztrerh7w30eve5dnqvxpupewkxnrtryjfx3xkqt60jfd in Nostr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs, config, lib, ... }: | |
| let | |
| # ── Pinned nixos-unstable snapshot ──────────────────────────────────────── | |
| # Everything GPU-related (driver, CUDA, and — via _module.args — llama-cpp's | |
| # CUDA build) comes from THIS exact nixpkgs rev, NOT the machine's channels. | |
| # `nix-channel --update` therefore can never silently move the GPU stack. | |
| # To upgrade: bump rev + sha256 below, then re-check the driver/CUDA pins. | |
| # Generated 2026-09-07 from nixos-unstable HEAD. | |
| pinnedUnstableSrc = builtins.fetchTarball { | |
| url = "https://github.com/NixOS/nixpkgs/archive/c043004d1c6985732bcc1cbc5a9c9aecbbb4e0f0.tar.gz"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| config, | |
| pkgs, | |
| lib, | |
| ... | |
| }: | |
| let | |
| vars = import ./vars.nix; | |
| unstable = import <unstable> { | |
| config = pkgs.config // { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Webmention test – link to blog post</title> | |
| </head> | |
| <body> | |
| <p>Webmention test source. Link: <a href="https://blog.maikel.dev/2026/05/01/the-ai-bubble-is-bursting.html">The AI bubble is bursting</a>.</p> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "layer": "top", | |
| "position": "top", | |
| // Choose the order of the modules | |
| "modules-left": [ | |
| // "hyprland/workspaces", | |
| "niri/workspaces", | |
| "custom/right-arrow-dark" | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input { | |
| keyboard { | |
| xkb { | |
| layout "es" | |
| } | |
| } | |
| touchpad { | |
| tap | |
| natural-scroll | |
| accel-speed 0.5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| description = "Basic flake for the dev environment of indie"; | |
| inputs = { | |
| nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; | |
| }; | |
| outputs = { self, nixpkgs }: | |
| let |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # On Nixos running this from the project folder with nix-shell will create a shell with all the necessary dependencies | |
| # and run postgresql in an ephemeral mode for development. | |
| { pkgs ? import <nixpkgs> {} }: | |
| pkgs.mkShell { | |
| nativeBuildInputs = with pkgs; [ | |
| elixir_1_18 | |
| elixir-ls | |
| erlang | |
| rebar3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # On Nixos running this from the project folder with nix-shell will create a shell with all the necessary dependencies | |
| # and run postgresql in an ephemeral mode for development. | |
| { pkgs ? import <nixpkgs> {} }: | |
| pkgs.mkShell { | |
| nativeBuildInputs = with pkgs; [ | |
| elixir_1_18 | |
| elixir-ls | |
| erlang | |
| rebar3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs ? import <nixpkgs> {} }: | |
| pkgs.mkShell { | |
| name = "indie"; | |
| nativeBuildInputs = with pkgs; [ | |
| elixir_1_18 | |
| erlang | |
| rebar3 | |
| nodejs | |
| yarn |
NewerOlder