Skip to content

Instantly share code, notes, and snippets.

{ pkgs, ... }:
pkgs.lib.filter (x: false)
{ pkgs, ... }:
{
imports = [ /etc/nixos/hardware-configuration.nix ];
boot = {
kernelParams = [ "quiet" "splash" "acpi_osi=Linux" ];
loader = {
systemd-boot.enable = true;
{ pkgs, ... }:
{
imports = [ /etc/nixos/hardware-configuration.nix ];
boot = {
kernelParams = [ "quiet" "splash" "acpi_osi=Linux" ];
loader = {
systemd-boot.enable = true;
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):
{ stdenv
, haskellPackages
}:
let
ghc = haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
yi
yi-frontend-pango
yi-keymap-emacs
yi-misc-modes
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
{
resources.sshKeyPairs.foo = {};
resources.sshKeyPairs.bar = {};
}
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";
})
nixpkgs.config.wine = {
release = "staging";
build = "wineWow";
};
interfaces = {
enp3s0 = {
ipv4.addresses = [{
address = "192.168.2.101";
prefixLength = 24;
}];
};
};