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
01:00.0 VGA compatible controller: NVIDIA Corporation GF108M [NVS 5400M] (rev ff) (prog-if ff) | |
!!! Unknown header type 7f | |
Kernel modules: nvidiafb, nouveau, nvidia_drm, nvidia |
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
01:00.0 VGA compatible controller: NVIDIA Corporation GF108M [NVS 5400M] (rev a1) (prog-if 00 [VGA controller]) | |
Subsystem: Lenovo Device 21f5 | |
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- | |
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- | |
Latency: 0 | |
Interrupt: pin A routed to IRQ 31 | |
Region 0: Memory at f0000000 (32-bit, non-prefetchable) [size=16M] | |
Region 1: Memory at c0000000 (64-bit, prefetchable) [size=256M] | |
Region 3: Memory at d0000000 (64-bit, prefetchable) [size=32M] | |
Region 5: I/O ports at 5000 [size=128] |
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
self: super: { | |
haskellPackages = super.haskellPackages.extend (helf: huper: { | |
palette = helf.callHackage "palette" "0.3.0.1" {}; | |
}); | |
} |
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
self: super: { | |
haskellPackages = super.haskellPackages.extend (helf: huper: { | |
palette = helf.callHackage "palette" "0.3.0.1" {}; | |
}); | |
} |
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
{ pkgs ? import <nixpkgs> {} }: | |
let | |
pyalsaaudio = pkgs.pythonPackages.buildPythonPackage rec { | |
pname = "pyalsaaudio"; | |
version = "0.8.4"; | |
src = pkgs.pythonPackages.fetchPypi { | |
inherit pname version; | |
sha256 = "84e8f8da544d7f4bd96479ce4a237600077984d9be1d7f16c1d9a492ecf50085"; |
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
with import <nixpkgs> {}; | |
let | |
pyalsaaudio = pythonPackages.buildPythonPackage rec { | |
pname = "pyalsaaudio"; | |
version = "0.8.4"; | |
src = pythonPackages.fetchPypi { | |
inherit pname version; | |
sha256 = "84e8f8da544d7f4bd96479ce4a237600077984d9be1d7f16c1d9a492ecf50085"; |
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
{ stdenv }: | |
stdenv.mkDerivation rec { | |
name = "test"; | |
src = ./.; | |
buildPhase = "gcc test.c"; | |
installPhase = '' | |
mkdir $out | |
cp a.out $out/test | |
''; |
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
zpool 109G 106G 96K none | |
zpool/crypt 109G 106G 192K none | |
zpool/crypt/root 92.1G 106G 3.47M legacy | |
zpool/crypt/root/home 65.6G 106G 65.6G legacy | |
zpool/crypt/root/nix 20.1G 106G 62.0M legacy | |
zpool/crypt/root/nix/store 20.0G 106G 20.0G legacy | |
zpool/crypt/root/tmp 5.75G 106G 5.75G legacy | |
zpool/crypt/root/var 560M 106G 560M legacy | |
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
pr = mkAlias "pr" '' | |
fetch -fu ''origin "refs/pull//head:pr/" && checkout "pr/"; | |
''; |
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
pr = mkAlias "pr" | |
${git} fetch -fu \ | |
${2:-$(${git} remote | grep "^upstream" || echo origin)} \ | |
"refs/pull/$1/head:pr/$1" && \ | |
${git} checkout "pr/$1"; | |
; | |