Skip to content

Instantly share code, notes, and snippets.

View Moredread's full-sized avatar
💭
Hacking

André-Patrick Bubel Moredread

💭
Hacking
View GitHub Profile
{ config, lib, pkgs, ... }:
{
fonts = {
enableDefaultFonts = true;
fonts = with pkgs; [
#font-awesome_4
corefonts # Microsoft free fonts
dejavu_fonts
fira
@Moredread
Moredread / .gitignore
Created January 30, 2022 14:19 — forked from samdoshi/.gitignore
Running SuperCollider/Jack2 inside Docker with ALSA pass-through
/jackdrc
{ config, pkgs, ... }:
{
containers.webserver =
{ privateNetwork = true;
hostAddress = "192.168.101.1";
localAddress = "192.168.101.2";
autoStart = true;
forwardPorts = [ { protocol = "tcp"; hostPort = 80; containerPort = 80; } ];
config =
{ services.httpd.enable = true;