I hereby claim:
- I am vamega on github.
- I am madiathv (https://keybase.io/madiathv) on keybase.
- I have a public key ASBaxefIA9S66WMar4FI_8DUorkwX-FmlUvyHKyzjvNDWwo
To claim this, I am signing this object:
| Any ideas can go here. |
I hereby claim:
To claim this, I am signing this object:
| [2015-01-19 13:24:04] [mainwindow.py] INFO: Cnchi installer version 0.6.35 | |
| [2015-01-19 13:24:06] [timezone.py] INFO: We have connection. Let's get our timezone | |
| [2015-01-19 13:24:07] [timezone.py] INFO: Timezone detected. | |
| [2015-01-19 13:24:09] [check.py] INFO: We have Internet connection. | |
| [2015-01-19 13:24:09] [check.py] INFO: We're connected to a power source. | |
| [2015-01-19 13:24:09] [check.py] INFO: We have enough disk space. | |
| [2015-01-19 13:24:09] [connectionpool.py] INFO: Starting new HTTP connection (1): www.archlinux.org | |
| [2015-01-19 13:24:10] [connectionpool.py] DEBUG: "GET /mirrors/status/json/ HTTP/1.1" 301 366 | |
| [2015-01-19 13:24:10] [connectionpool.py] INFO: Starting new HTTPS connection (1): www.archlinux.org | |
| [2015-01-19 13:24:10] [connectionpool.py] DEBUG: "GET /mirrors/status/json/ HTTP/1.1" 200 17482 |
| {-# LANGUAGE OverloadedStrings #-} | |
| {-# LANGUAGE RecordWildCards #-} | |
| {-# LANGUAGE ScopedTypeVariables #-} | |
| import Data.Aeson | |
| import Data.Aeson.Types (Parser, Array) | |
| import Data.Time (defaultTimeLocale, formatTime, getZonedTime) | |
| import qualified Data.ByteString.Lazy as BL | |
| import qualified Data.Vector as V |
| #jinja2: trim_blocks: "true", lstrip_blocks: "false" | |
| # Example configuration for snapraid | |
| # Defines the file to use as parity storage | |
| # It must NOT be in a data disk | |
| # Format: "parity FILE_PATH" | |
| {% for disk in disks.parity %} | |
| {% if loop.index1 != 1 %}{{loop.index1}}-{% endif %}parity {{ disk.mount_point }}/snapraid.parity | |
| {% endfor %} |
| FROM debian:stretch-slim | |
| MAINTAINER Varun Madiath <[email protected]> | |
| RUN apt-get update && \ | |
| apt-get -y install \ | |
| apt-transport-https \ | |
| curl \ | |
| gnupg2 \ | |
| rubygems-integration \ | |
| ruby-dev \ | |
| ruby \ |
| #!/usr/bin/ruby | |
| # Create display override file to force Mac OS X to use RGB mode for Display | |
| # see http://embdev.net/topic/284710 | |
| require 'base64' | |
| data=`ioreg -l -d0 -w 0 -r -c AppleDisplay` | |
| edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten | |
| vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten |
| vmadiath@nexus:~$ sudo apt-get autoremove | |
| Reading package lists... Done | |
| Building dependency tree | |
| Reading state information... Done | |
| The following packages will be REMOVED: | |
| cockpit-networkmanager cockpit-storaged crda dnsmasq-base eject exfat-fuse exfat-utils iputils-arping iw | |
| libatasmart4 libbluetooth3 libdbus-glib-1-2 libgudev-1.0-0 libjansson4 libjim0.76 libmbim-glib4 libmbim-proxy | |
| libmm-glib0 libndp0 libnl-3-200 libnl-genl-3-200 libnm0 libpcsclite1 libqmi-glib5 libqmi-proxy libsoup2.4-1 | |
| libteamdctl0 libudisks2-0 modemmanager network-manager python3-dbus udisks2 usb-modeswitch usb-modeswitch-data | |
| wireless-regdb wpasupplicant |
I'm writing this gist for my own records but it might help someone else too.
Support for Catalina has improved a lot since the update was first rolled out.
Note: See the NixOS manual for discussion of the --darwin-use-unencrypted-nix-store-volume option.
| Reproduction of issue described in: https://discourse.nixos.org/t/unable-to-build-caddy-with-custom-modules/19125 | |
| Problem was found to be the reused value of the sha256 in the `dist` and `src` derivations. |