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 cb92ea14afbffa1e916cccc71d37b1c9432f0aed Mon Sep 17 00:00:00 2001 | |
From: Robin Gloster <[email protected]> | |
Date: Sun, 7 Jan 2018 03:32:10 +0100 | |
Subject: [PATCH] ghcWithPackages: fix ghc version passing | |
--- | |
pkgs/development/haskell-modules/make-package-set.nix | 1 + | |
1 file changed, 1 insertion(+) | |
diff --git a/pkgs/development/haskell-modules/make-package-set.nix b/pkgs/development/haskell-modules/make-package-set.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
{ pkgs, lib, config, ... }: | |
{ | |
networking = { | |
firewall.allowedTCPPorts = [ | |
3000 # grafana | |
9090 # prometheus | |
9093 # alertmanager | |
]; | |
useDHCP = true; | |
}; |
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
# Use the systemd-boot EFI boot loader. | |
boot.loader.systemd-boot.enable = true; | |
boot.loader.efi.canTouchEfiVariables = true; |
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
deps/strdup/strdup.h:22:1: error: expected identifier or '(' before '__extension__' | |
strdup(const char *str); | |
strsep.c:65:23: error: register name not specified for 'delim' | |
register const char *delim; | |
installwatch.c:3751:5: error: conflicting types for '__open_2' | |
int __open_2(const char *pathname, int flags, ...) { | |
/nix/store/88633npw9w7xs4ixyl4sc85bqls8r21d-glibc-2.23-dev/include/bits/fcntl2.h:50:4: error: call to '__open_missing_mode' declared with attribute error: open with O_CREAT or O_TMPFILE in second argument needs 3 arguments |
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
<section xml:id="sec-hardening-in-nixpkgs"><title>Hardening in Nixpkgs</title> | |
<para>By default some flags to harden packages at compile or link-time are set:</para> | |
<variablelist> | |
<varlistentry> | |
<term><varname>hardening_format</varname></term> | |
<listitem><para>Adds the <option>-Wformat -Wformat-security | |
-Werror=format-security</option> compiler options. At present, |
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
elasticsearch = { | |
enable = true; | |
}; | |
logstash = { | |
enable = true; | |
outputConfig = '' | |
elasticsearch { | |
protocol => http | |
} | |
''; |
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
# This is the default config for the XMPP client Poezio. | |
# Comments should be on their own line and NOT at the end | |
# of a meaningful line. | |
[Poezio] | |
# Jabber identifier. Specify it only if you want to connect using an existing | |
# account on a server. This is optional and useful only for some features, | |
# like room administration, nickname registration. | |
# The 'server' option will be ignored if you specify a JID (Jabber identifier) |
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
let | |
fetchgit = (import <nixpkgs> {}).fetchgit; | |
in | |
with import (fetchgit { | |
rev = "0acc1cd552dc4b4d8065cc16a484697167f6e45e"; | |
url = "git://github.com/mayflower/nixpkgs"; | |
sha256 = "1chb14vfzwyv6y2l3i4zgdydfymi0znsv9bhppdazf6r3fsf6w9j"; | |
}) {}; { | |
duck = rustCargoPlatform.buildRustPackage { | |
name = "duck"; |
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/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix | |
index 3348e8d..1d91cb0 100644 | |
--- a/nixos/modules/services/x11/xserver.nix | |
+++ b/nixos/modules/services/x11/xserver.nix | |
@@ -280,6 +280,14 @@ in | |
''; | |
}; | |
+ xkbDir = mkOption { | |
+ type = types.path; |
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
Hi, | |
We had our first Munich NixOS Meetup last week and decided to sprint on the weekend of December 12 & 13 | |
to get stuff done help us get over not being able to attend NixCon. | |
Currently planned projects are: | |
* nginx/wpa_supplicant/php config abstraction | |
* meta information completion | |
* hydra channel fixing | |
* packaging introduction |
NewerOlder