This file contains hidden or 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
services.postgresql = { | |
enable = true; | |
enableTCPIP = true; | |
ensureDatabases = [ | |
"concourse" | |
]; | |
ensureUsers = [ | |
{ | |
name = "concourse"; | |
ensurePermissions = { |
This file contains hidden or 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
{ | |
systemd: { | |
network: { | |
netdevs: ( | |
.network.ethernets | with_entries(.value |= { | |
netdevConfig: {Name: ."set-name"}, | |
matchConfig: {MACAddress: .match.macaddress} | |
}) | |
) | |
} |
This file contains hidden or 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
=================================== FAILURES =================================== | |
[31m[1m______________________________ test_verify_cases _______________________________[0m | |
[gw12] linux -- Python 3.11.7 /nix/store/asiphbpiy2gmidfm3xbwcikayhs66289-python3-3.11.7/bin/python3.11 | |
[1m[31mlib/python3.11/site-packages/scipy/linalg/tests/test_decomp_polar.py[0m:89: in test_verify_cases | |
verify_polar(a) | |
a = [[1, 2, 3]] | |
[1m[31mlib/python3.11/site-packages/scipy/linalg/tests/test_decomp_polar.py[0m:77: in verify_polar | |
evals = eigh(p, eigvals_only=True) | |
a = [[1, 2, 3]] | |
aa = array([[1, 2, 3]]) |
This file contains hidden or 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
{ lib | |
, stdenvNoCC | |
, fetchFromGitHub | |
, awscli | |
, coreutils | |
, makeWrapper | |
, gnugrep | |
, gnused | |
, jq | |
, which |
This file contains hidden or 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
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Process: python3.11 [11605] | |
Path: /Volumes/VOLUME/*/python3.11 | |
Identifier: python3.11 | |
Version: ??? | |
Code Type: ARM-64 (Native) | |
Parent Process: Exited process [11324] |
This file contains hidden or 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
CREATE FUNCTION hash_agg_tfunc(bytea, anyelement) RETURNS bytea AS $$ | |
SELECT sha256(convert_to($2::text, 'UTF8') || $1) | |
$$ LANGUAGE SQL; | |
CREATE AGGREGATE hash_agg (anyelement) ( | |
sfunc = hash_agg_tfunc, | |
stype = bytea, | |
initcond = '{}' | |
); |
This file contains hidden or 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
(final: prev: { | |
wrapQemuBinfmtP = name: emulator: | |
prev.wrapQemuBinfmtP name ( | |
pkgs.runCommand "${name}-arg-wrapper" { | |
nativeBuildInputs = [ final.pkgsStatic.makeBinaryWrapper ]; | |
} '' | |
makeWrapper ${emulator} $out --add-flags '-cpu max,pauth-impdef=on' | |
'' | |
); | |
}) |
OlderNewer