Skip to content

Instantly share code, notes, and snippets.

with (import <nixpkgs> {});
bundlerEnv {
name = "move_data";
ruby = ruby_2_2_2;
gemset = ./gemset.nix;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
}
(define-module (apa512 packages unibilium)
#:use-module (guix build-system gnu)
#:use-module (guix download)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages pkg-config))
(define-public unibilium
(package
;; This is an operating system configuration template
;; for a "desktop" setup with X11.
(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules xfce certs curl linux pulseaudio ssh version-control vim wm)
(operating-system
(host-name "guix")
(timezone "Europe/Stockholm")
============================================================================
Testsuite summary for GNU Guix 0.8.3
============================================================================
# TOTAL: 46
# PASS: 44
# SKIP: 1
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules certs gnuzilla linux pulseaudio ssh version-control vim wm xfce)
(operating-system
(host-name "guix")
(timezone "Europe/Stockholm")
(locale "en_US.UTF-8")
(bootloader (grub-configuration (device "/dev/sda")))
{ config, lib, pkgs, ... }:
{
imports = [
/etc/nixos/hardware-configuration.nix
./thinkpad.nix
];
nixpkgs.config = {
allowUnfree = true;
building Nix...
building the system configuration...
activating the configuration...
setting up /etc...
warning: the following units failed: postgresql.service
● postgresql.service - PostgreSQL Server
Loaded: loaded (/nix/store/9lgk586wbq0rfhd58815ifv1k4gqr6a9-unit-postgresql.service/postgresql.service)
Active: failed (Result: exit-code) since Sat 2016-02-20 18:17:57 CET; 41ms ago
Process: 7882 ExecStartPre=/nix/store/55v9f3v522jbh7njzinnraphgsnd36hq-unit-script/bin/postgresql-pre-start (code=exited, status=127)
class CreateGithubTables < ActiveRecord::Migration
def up
rename_table :github_repositories, :github_repositories_old
create_table "github_repositories" do |t|
t.text "owner"
t.text "name"
t.integer "parent_id"
t.text "description"
t.text "website_url"

docker-compose.yml:

  dockerfile: Dockerfile-test
  build: .
  command: sleep infinity
  volumes:
    - .:/stuff
class CreateUndoMergeActions < ActiveRecord::Migration
def change
create_table :undo_merge_actions do |t|
t.uuid :person_id
t.json :undo_action, array: true
t.timestamps
end
end
end