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, ... }: | |
pkgs.lib.filter (x: false) |
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, ... }: | |
{ | |
imports = [ /etc/nixos/hardware-configuration.nix ]; | |
boot = { | |
kernelParams = [ "quiet" "splash" "acpi_osi=Linux" ]; | |
loader = { | |
systemd-boot.enable = true; |
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, ... }: | |
{ | |
imports = [ /etc/nixos/hardware-configuration.nix ]; | |
boot = { | |
kernelParams = [ "quiet" "splash" "acpi_osi=Linux" ]; | |
loader = { | |
systemd-boot.enable = true; |
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
class Either(object): | |
pass | |
class Left(Either): | |
def __init__(self, v): self.v = v | |
def is_left(self): return True | |
def is_right(self): return False | |
def value(self): return self.v | |
class Right(Either): |
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 | |
, haskellPackages | |
}: | |
let | |
ghc = haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [ | |
yi | |
yi-frontend-pango | |
yi-keymap-emacs | |
yi-misc-modes |
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
3a2734bbad1 * python: rlp: 0.6.0 -> 1.0.1 | |
367a7ae138b * pythonPackages.rlp: revert to working 0.6.0 | |
e00ddc62b27 * python.pkgs.rlp: mark as broken | |
4c3a19b9c96 * python: rlp: 0.6.0 -> 1.0.1 | |
67dbfd3fc17 * pythonPackages.rlp: init at 0.6.0 |
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
{ | |
resources.sshKeyPairs.foo = {}; | |
resources.sshKeyPairs.bar = {}; | |
} |
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
dmenu = (pkgs.dmenu.override { | |
patches = [ | |
(pkgs.fetchurl { | |
url = https://tools.suckless.org/dmenu/patches/dmenu-center-4.8.diff; | |
sha256 = "0z21l82y11rx0kd74abpyh925rq29dl34y7p4868dl3ffknc7ifz"; | |
}) | |
(pkgs.fetchurl { | |
url = https://tools.suckless.org/dmenu/patches/dmenu-password-4.7.diff; | |
sha256 = "1y6r57iqp31q32zwzyavkiy9hv81ffbpb5hm03xxmpv60wvy3nib"; | |
}) |
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
nixpkgs.config.wine = { | |
release = "staging"; | |
build = "wineWow"; | |
}; |
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
interfaces = { | |
enp3s0 = { | |
ipv4.addresses = [{ | |
address = "192.168.2.101"; | |
prefixLength = 24; | |
}]; | |
}; | |
}; |