fh, the official FlakeHub CLI fh is a scrappy CLI for searching FlakeHub and adding new inputs to your Nix flakes. Usage Using fh from FlakeHub: nix shell "https://flakehub.com/f/DeterminateSystems/fh/*.tar.gz" Note This builds fh locally on your computer. Pre-built binaries aren't...
This is a `nix flake show` stack trace for a nixos flake that contains this option in home-manager error: … from call site at /nix/store/cdjqlnn7kx4hfmxkry9yjfdvqp2pradh-source/lib/attrsets.nix:1057:36: 1056| set: 1057| listToAttrs (map (attr: f attr set.${attr}) (attr...
flake.lock [create-pull-request] automated change 14天前 flake.nix Add default home-manager module 2个月前 go.mod Bump golang.org/x/crypto from 0.36.0 to 0.37.0 19天前 go.sum Bump golang.org/x/crypto from 0.36.0 to 0.37.0
Themcp-snowflake-serveris an MCP server that bridges your environment (e.g., Claude Desktop or any MCP-compatible client) to a Snowflake database. It offers a dynamic resource for storing insights, plus six main tools for querying and managing Snowflake: read_query(SELECT statements) write_...
inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-linux" "i686-linux" ] (system: let pkgs = nixpkgs.le...
Set up a flake with the Home Manager template by running flake new: nix flake new ~/.config/nixpkgs -t github:nix-community/home-manager Listing 2: ~/.config/home-manager/flake.nix { description = "Home Manager configuration of Jane Doe"; inputs = { # Specify the source of Home ...
Nix Flakes 在 flake.nix 中通过 inputs 声明依赖包的数据源,通过 flake.lock 锁定依赖版本,完全取代掉了 nix-channel 的功能。nix-env: 用于管理用户环境的软件包,是传统 Nix 的核心命令行工具。它从 nix-channel 定义的数据源中安装软件包,所以安装的软件包版本受 channel 影响。通过nix-env安装的包不会被...
in flake.inputs. 👍1 aaronpkelly commented on Aug 24, 2024 aaronpkelly on Aug 24, 2024· edited by aaronpkelly Edits Thanks @yelite for your flakes workaround I don't use flakes myself, so one workaround I'm using for the moment is excluding all packages that pull in swift as...
nix.url = "github:nixos/nix/ed129267dcd7dd2cce48c09b17aefd6cfc488bcd"; # before splitting libnixflake }; outputs = inputs @ { nixpkgs, flake-utils, nocargo, rust-overlay, ... }: @@ -27,7 +27,7 @@ overlays = [ (import rust-overlay) nix-for-py-overlay ]; inherit system;...
flake.nix +181 Original file line numberDiff line numberDiff line change @@ -0,0 +1,181 @@ 1 + { 2 + description = "Flake utils demo"; 3 + 4 + inputs.flake-utils.url = "github:numtide/flake-utils"; 5 + 6 + outputs = 7 + { 8 + self, 9 + nixpkgs, ...