Skip to content
Snippets Groups Projects
Select Git revision
  • 814799cd0b4dd0e9eacb00d3f5ee77c178b2b3d7
  • master default protected
  • nrb/allow-wan-status
  • nrb/ffs-prometheus-node-exporter
  • nrbffs/ci-cache-only-dl
  • nrbffs/test
  • v1.6-alpha02
7 results

site.mk

Blame
  • Forked from firmware / FFS Gluon site
    Source project has a limited visibility.
    shell.nix 442 B
    let
      lock = builtins.fromJSON (builtins.readFile ./flake.lock);
    in
    {
     pkgs ? import (fetchTarball {
       url = "https://github.com/NixOS/nixpkgs/archive/${lock.nodes.nixpkgs.locked.rev}.tar.gz";
       sha256 = lock.nodes.nixpkgs.locked.narHash;
     }) { }
    }:
    
    with pkgs;
    
    mkShell {
      name = "ansible-shell";
      buildInputs = [
        ansible
        ansible-lint
        bash
        direnv
        git-crypt
        sshpass
      ];
      HISTFILE = "${toString ./.}/.history";
    }