stockholm/makefu/1systems/pornocauster.nix

71 lines
1.9 KiB
Nix
Raw Normal View History

2015-08-22 23:28:41 +00:00
#
#
#
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
../2configs/main-laptop.nix #< base-gui + zsh
2015-08-24 09:06:10 +00:00
# Krebs
2015-08-22 23:28:41 +00:00
../2configs/tinc-basic-retiolum.nix
2015-08-24 09:06:10 +00:00
#../2configs/disable_v6.nix
# applications
../2configs/exim-retiolum.nix
2015-10-20 12:25:49 +00:00
../2configs/mail-client.nix
../2configs/printer.nix
2015-09-27 17:30:37 +00:00
#../2configs/virtualization.nix
2015-11-06 22:54:27 +00:00
../2configs/virtualization.nix
../2configs/virtualization-virtualbox.nix
2015-08-24 09:06:10 +00:00
../2configs/wwan.nix
2015-08-22 23:28:41 +00:00
2015-09-02 08:02:05 +00:00
# services
../2configs/git/brain-retiolum.nix
2015-09-27 17:30:37 +00:00
../2configs/tor.nix
# ../2configs/buildbot-standalone.nix
# hardware specifics are in here
2015-09-02 08:02:05 +00:00
../2configs/hw/tp-x220.nix
# mount points
../2configs/fs/sda-crypto-root-home.nix
2015-11-06 22:54:27 +00:00
# ../2configs/mediawiki.nix
#../2configs/wordpress.nix
2015-08-22 23:28:41 +00:00
];
2016-01-14 11:43:59 +00:00
hardware.sane.enable = true;
hardware.sane.extraBackends = [ pkgs.samsungUnifiedLinuxDriver ];
nixpkgs.config.packageOverrides = pkgs: {
tinc = pkgs.tinc_pre;
};
krebs.Reaktor = {
2016-01-14 11:43:59 +00:00
enable = false;
nickname = "makefu|r";
plugins = with pkgs.ReaktorPlugins; [ nixos-version random-emoji ];
};
# nix.binaryCaches = [ "http://acng.shack/nixos" "https://cache.nixos.org" ];
2015-11-06 22:54:27 +00:00
environment.systemPackages = with pkgs;[
get
virtmanager
gnome3.dconf
2015-12-04 21:43:35 +00:00
krebspaste
2015-11-06 22:54:27 +00:00
];
services.logind.extraConfig = "HandleLidSwitch=ignore";
# configure pulseAudio to provide a HDMI sink as well
hardware.pulseaudio.configFile = pkgs.writeText "pulse-default-pa" ''
${builtins.readFile "${config.hardware.pulseaudio.package}/etc/pulse/default.pa"}
load-module module-alsa-sink device=hw:0,3 sink_properties=device.description="HDMIOutput" sink_name="HDMI"'';
2016-01-14 11:43:59 +00:00
networking.firewall.enable = false;
2015-08-22 23:28:41 +00:00
networking.firewall.allowedTCPPorts = [
25
];
krebs.build.host = config.krebs.hosts.pornocauster;
2015-08-22 23:28:41 +00:00
}