Skip to content

Instantly share code, notes, and snippets.

View mi-skam's full-sized avatar

mi-skam mi-skam

  • mi-skam
  • Zeitz
  • 03:42 (UTC +02:00)
View GitHub Profile
@mi-skam
mi-skam / boxstarter.ps1
Last active February 13, 2019 08:36 — forked from jessfraz/boxstarter.ps1
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Original Author: Jess Frazelle <[email protected]>
# Author: Maksim
# Last Updated: 2019-02-13
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
# Import for syncthing you need to provide your login password (as a secure-string like so):
@mi-skam
mi-skam / dockercompose_systemd.md
Created April 24, 2019 13:28 — forked from mosquito/README.md
Add doker-compose as a systemd unit

Docker compose as a systemd unit

Create file /etc/systemd/system/[email protected]

[Unit]
Description=%i service with docker compose
Requires=docker.service
After=docker.service
@mi-skam
mi-skam / nginx.conf
Created April 29, 2019 16:30 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@mi-skam
mi-skam / autotools.nix
Last active May 25, 2020 12:15 — forked from lucabrunox/autotools.nix
Nix pill 12
pkgs: attrs:
with pkgs;
let defaultAttrs = {
builder = "${bash}/bin/bash";
args = [ ./builder.sh ];
setup = ./setup.sh;
baseInputs = [ gnutar gzip gnumake gcc binutils-unwrapped coreutils gawk gnused gnugrep patchelf findutils ];
buildInputs = [];
system = builtins.currentSystem;
};
@mi-skam
mi-skam / home.nix
Created June 18, 2020 17:29
WSL2: Debian - home-manager configuration
{ config, pkgs, ... }:
let
gitCredentialManager = pkgs.writeScriptBin "git-credential-manager" ''
#!${pkgs.stdenv.shell}
exec /windows/c/Program\ Files/Git/mingw64/libexec/git-core/git-credential-manager.exe $@
'';
in
{
# Let Home Manager install and manage itself.
@mi-skam
mi-skam / .bashrc
Created June 18, 2020 17:36
WSL2: Debian - parts of bashrc
# custom
#[ -n ${WSL_AUTH_SOCK} ] && export SSH_AUTH_SOCK=${WSL_AUTH_SOCK}
#export SSH_AUTH_SOCK=/windows/c/Users/plumps/AppData/Local/Temp/ssh-agent.sock
#Nix
export SSH_AUTH_SOCK=$HOME/.ssh/agent.sock
ss -a | grep -q $SSH_AUTH_SOCK
if [ $? -ne 0 ]; then
rm -f $SSH_AUTH_SOCK
( setsid socat UNIX-LISTEN:$SSH_AUTH_SOCK,fork EXEC:"npiperelay.exe -ei -s //./pipe/openssh-ssh-agent",nofork & ) >/dev/null 2>&1
@mi-skam
mi-skam / settings.json
Last active August 12, 2020 07:23
windows-terminal profile
// This file was initially generated by Windows Terminal Preview 1.1.1812.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
@mi-skam
mi-skam / keybase.md
Created June 22, 2021 20:53
Keybase verification

Keybase proof

I hereby claim:

  • I am mi-skam on github.
  • I am plumps (https://keybase.io/plumps) on keybase.
  • I have a public key ASCj7UQpTBsXlgqCvGvJqEeAYuW5FzxqXEA5msIsyvUDRwo

To claim this, I am signing this object:

@mi-skam
mi-skam / flake.lock
Last active December 14, 2021 16:02
nix environment for js
{
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1637014545,
"narHash": "sha256-26IZAc5yzlD9FlDT54io1oqG/bBoyka+FJk5guaX4x4=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "bba5dcc8e0b20ab664967ad83d24d64cb64ec4f4",
"type": "github"