Skip to content

Instantly share code, notes, and snippets.

@m1cr0man
m1cr0man / ModsConfig.xml
Last active January 26, 2018 23:42
[B18] M1cr0man's Modpack Load Order
<?xml version="1.0" encoding="utf-8"?>
<ModsConfigData>
<buildNumber>1722</buildNumber>
<activeMods>
<li>Core</li>
<li>704181221</li>
<li>818773962</li>
<li>868415092</li>
<li>1206252020</li>
<li>725952322</li>
@m1cr0man
m1cr0man / update.txt
Created December 30, 2018 01:40
SmartOS Ansible imgadm module Docker support
PLAY [baremetal] **************************************************************************************************************************************************************************************************************************************************************
TASK [Gathering Facts] ********************************************************************************************************************************************************************************************************************************************************
ok: [myserver]
TASK [hello-world imported] ***************************************************************************************************************************************************************************************************************************************************
changed: [myserver]
TASK [debug] ************************************************************************************************************************************************************
@m1cr0man
m1cr0man / output.txt
Created December 30, 2018 13:13
Ansible #50399 sample
PLAY [baremetal] **************************************************************************************************************************************************************************************************************************************************************
TASK [Gathering Facts] ********************************************************************************************************************************************************************************************************************************************************
ok: [myserver]
TASK [hello-world imported] ***************************************************************************************************************************************************************************************************************************************************
changed: [myserver]
TASK [debug] ************************************************************************************************************************************************************
@m1cr0man
m1cr0man / localpip.sh
Created December 30, 2018 15:29
Script to link binaries from virtualenv to a dir in PATH
#!/bin/bash
IGNORED="
activate
activate.csh
activate.fish
activate_this.py
easy_install
easy_install-3.6
pip
@m1cr0man
m1cr0man / ModManager.yaml
Last active June 8, 2019 20:11
[1.0] Rimworld Planetary Domination Collection
Version: 1
Name: m1cr0pack_5
Mods:
- Id: 1544705976
Name: ModCheck
- Id: Core
Name: Core
- Id: 962732083
Name: RuntimeGC
- Id: 1507748539
@m1cr0man
m1cr0man / override.nix
Created June 16, 2019 12:01
Building nodejs package with native dependencies
{pkgs ? import /root/nixpkgs {
inherit system;
}, system ? builtins.currentSystem}:
let
nodePackages = import ./default.nix {
inherit pkgs system;
};
in
nodePackages // {
@m1cr0man
m1cr0man / configuration.nix
Created September 29, 2019 14:44
Glusterfs override
{ pkgs, ... }:
{
services.glusterfs = {
enable = true;
};
services.nfs.server.enable = true;
nixpkgs.overlays = [
(self: super: {
@m1cr0man
m1cr0man / httpd.conf
Created October 6, 2019 22:58
NixOS php-fpm and apache - the crucial lines!
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/phpfpm-nextcloud/nextcloud.sock|fcgi://localhost/"
</FilesMatch>
@m1cr0man
m1cr0man / legoacme.nix
Created November 4, 2019 15:22
Implementation of NixOS/nixpkgs#63613 supporting wildcards
# Taken from https://github.com/NixOS/nixpkgs/pull/63613
# Also incoroporates patches from https://github.com/NixOS/nixpkgs/pull/63613#issuecomment-531471460
# TODO delete this when PR is merged, and switch usages of legoCerts to certs
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.security.acme;
directory = "/var/lib/acme";
@m1cr0man
m1cr0man / cmd.sh
Last active January 4, 2020 13:42
configuration for nixos-generate
export NIX_PATH=nixpkgs=$(pwd)/nixpkgs # Using current nixos-unstable
nixos-generate -f kexec -c kexec_configuration.nix 2>&1 | tee generate.log