Skip to content

Instantly share code, notes, and snippets.

install crowdstrike falcon on nixos

  1. Copy your binaries (.deb package) to /opt/CrowdStrike.
  2. Add both .nix files from this page to your config.
  3. Write your companies ID to /etc/falcon-sensor.env in the format of COMPANYID="[id]".
  4. Apply nixos update.
  5. Check sensor status using systemctl status falcon-sensor (should be running if the nixos update succeeded)
root@dac2bcf93045:~# hashcat -I
hashcat (v6.2.6) starting in backend information mode
CUDA Info:
==========
CUDA.Version.: 12.2
Backend Device ID #1 (Alias: #9)
Name...........: NVIDIA GeForce RTX 4090
@nilsherzig
nilsherzig / picker.lua
Created January 27, 2024 20:43
Makefile target picker for neovim and telescope
local Path = require("plenary.path")
local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local conf = require("telescope.config").values
local action_state = require("telescope.actions.state")
local function extract_makefile_targets()
local targets = {}
local makefile_path = Path:new("Makefile")