I have made a nix Flake to build a Golang module. It uses a PostgreSQL database. Is it possible to use flake to install PostgreSQL like this using nix flake. The following code runs and builds the Go module.
irmago= buidGoModule {
pname =…
I ve followed these instructions (paragraph : build from source):
{
description = "virtual environment with python and streamlit";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.flake-utils.url =…
I have a directory with two files, main.py and flake.nix.
flake.nix:
{
description = "virtual environment with python and streamlit";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.flake-utils.url =…
I'm trying to write a nix flake that produces a shell to compile a tex project from two different systems: One linux x86_64 and one MacOs aarch64-darwin.
I'm quite new to nix and flakes, so I took the example flake given on the nixos wiki "Super…
I want to follow this tutorial on colab. But I don't want to create a google account to execute the code.
I've created a jupiter server with nix.
flake.nix:
{
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-unstable";
};
…
I have NixOS 22.11 set up as on a local workstation. I'm looking for a way to create a customizable and flexible local environment for Wordpress development using Nix. I want the solution to be "ephemeral" (just drop-in config to any directory &…
I am trying to make a Nix flake which will use poetry2nix for building a poetry project the code is
{
description = "searx : flake";
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-20.03;
outputs = { self, nixpkgs }: {
…