dotfiles/logical/ascanius.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2016-01-28 02:59:31 +01:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
let secrets = import <secrets>;
in
{
imports =
2017-02-02 17:22:03 +01:00
[ ../physical/hp8570w.nix
2016-01-28 02:59:31 +01:00
../roles/common.nix
2017-02-02 16:31:19 +01:00
../roles/workstation.nix
2017-01-26 14:50:56 +01:00
../modules/tor-hidden-service.nix
2016-01-28 02:59:31 +01:00
];
# no, not that Ascanius.
networking.hostName = secrets.hostnames.ascanius;
# GOTTA GO FASTER
# this pulls in systemd-udevd-settle, which slows down boot
systemd.services.scsi-link-pm.enable = false;
nixpkgs.config = {
packageOverrides = pkgs : {
bluez = pkgs.bluez5;
2017-01-26 14:55:53 +01:00
# https://github.com/NixOS/nixpkgs/issues/22099
trustedGrub = pkgs.trustedGrub.overrideDerivation (attr: {NIX_CFLAGS_COMPILE = "-Wno-error";});
2016-01-28 02:59:31 +01:00
};
};
2017-01-26 14:50:56 +01:00
services.tor.hiddenServices = [
{ name = "ssh";
port = 22;
hostname = secrets.tor_hostnames."ssh.ascanius";
private_key = "/run/keys/torkeys/ssh.ascanius.key"; }
];
2017-01-26 14:51:44 +01:00
nix.gc.automatic = pkgs.lib.mkOverride 30 false;
2016-01-28 02:59:31 +01:00
}