- prepare an SD Card as described on archlinuxarm.org
- SSH into your system, add your public key (initial root password is "root")
- disable root password by calling
passwd -d root
- set a useful hostname by calling
echo $hostname > /etc/hostname
- run
pacman -Suy
to update packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure("2") do |config| | |
config.vm.box = "AndrewDryga/vagrant-box-osx" | |
config.ssh.forward_agent = true | |
config.vm.provision "shell", privileged: false, inline: <<-SHELL | |
if [ ! -d /nix ]; then | |
curl https://nixos.org/nix/install | sh | |
fi | |
if [ ! -d $HOME/nixpkgs ]; then | |
git clone https://github.com/NixOS/nixpkgs.git ~/nixpkgs | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs ? import <nixpkgs> {} }: | |
let | |
nixLib = pkgs.callPackage /home/flokli/dev/yarn2nix/nix-lib {}; | |
in nixLib.callTemplate ./npm-package.nix | |
(nixLib.buildNodeDeps ./npm-deps.nix) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 15a7a469957bc37915e8428f77cbcc6f2c54b364 Mon Sep 17 00:00:00 2001 | |
From: Florian Klink <[email protected]> | |
Date: Fri, 2 Feb 2018 00:37:37 +0100 | |
Subject: [PATCH 1/2] libvirtd: remove unused imports | |
--- | |
nixops/backends/libvirtd.py | 11 ++++------- | |
1 file changed, 4 insertions(+), 7 deletions(-) | |
diff --git a/nixops/backends/libvirtd.py b/nixops/backends/libvirtd.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 4a9b8648657b14382f69efd4ba70241e2d4b14f3 Mon Sep 17 00:00:00 2001 | |
From: Florian Klink <[email protected]> | |
Date: Sun, 19 Nov 2017 00:46:09 +0100 | |
Subject: [PATCH] nm-pptp-service: remove manual path calculations, use | |
G_SPAWN_SEARCH_PATH | |
--- | |
src/nm-pptp-service.c | 87 +++++++++------------------------------------------ | |
1 file changed, 14 insertions(+), 73 deletions(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 43650a93d6714236f88a202e99971e75d2c94d2c Mon Sep 17 00:00:00 2001 | |
From: Florian Klink <[email protected]> | |
Date: Sun, 22 Oct 2017 13:58:28 +0200 | |
Subject: [PATCH] libcap: already patch Make.Rules in prePatch | |
Make.Rules gets already included during compilation, so set paths before | |
invoking make. This fixes wrong paths in libcap.pc. | |
--- | |
pkgs/os-specific/linux/libcap/default.nix | 3 +-- | |
1 file changed, 1 insertion(+), 2 deletions(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Service] | |
ExecStartPre=-/usr/bin/docker rm psql-tmpfs | |
ExecStart=/usr/bin/docker run --rm --shm-size=2g -name psql-tmpfs -p 127.0.0.1:5434:5432 -t andir/postgresql-tmpfs | |
ExecStartPost=/bin/sleep 15 | |
ExecStop=/usr/bin/docker stop psql-tmpfs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import cv2 | |
import time | |
from threading import Thread | |
from flask import Flask, Response | |
app = Flask(__name__) | |
out = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.each(index_data,function(){ | |
$('<iframe/>', { | |
src: 'https://'+app_config.domain+user.run_sessions_path+this[0]+'.tcx' | |
}).appendTo('body'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/gluon/gluon-alfred/Makefile b/gluon/gluon-alfred/Makefile | |
index bb6926a..ee8ee74 100644 | |
--- a/gluon/gluon-alfred/Makefile | |
+++ b/gluon/gluon-alfred/Makefile | |
@@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/package.mk | |
define Package/gluon-alfred | |
SECTION:=gluon | |
CATEGORY:=Gluon | |
- DEPENDS:=+gluon-core +gluon-announce +gluon-cron +alfred | |
+ DEPENDS:=+gluon-core +gluon-nodeinfo +gluon-cron +alfred |