2015-05-21 13:27:06 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
2015-05-21 14:13:47 +00:00
|
|
|
[
|
|
|
|
./common.nix
|
2016-07-22 11:01:40 +00:00
|
|
|
./large-sw.nix
|
2015-05-21 14:13:47 +00:00
|
|
|
./uefi.nix
|
2015-12-06 09:03:22 +00:00
|
|
|
./fstrim.nix
|
2015-05-21 13:27:06 +00:00
|
|
|
];
|
|
|
|
|
2015-09-03 08:41:18 +00:00
|
|
|
environment.etc."lvm/lvm.conf".text = ''
|
|
|
|
devices {
|
|
|
|
issue_discards = 1
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
boot.initrd.luks.devices = [
|
|
|
|
{
|
|
|
|
name = "sda2_crypt";
|
2017-04-09 15:57:14 +00:00
|
|
|
device = "/dev/disk/by-uuid/2e2e2824-e357-4a75-bddc-8cf386cd0f53";
|
2015-09-03 08:41:18 +00:00
|
|
|
preLVM = true;
|
|
|
|
allowDiscards = true;
|
|
|
|
}
|
|
|
|
];
|
2015-05-21 13:27:06 +00:00
|
|
|
|
|
|
|
networking.hostName = "archachatina"; # Define your hostname.
|
|
|
|
networking.hostId = "cc7ea3ba";
|
|
|
|
|
2017-06-29 11:26:46 +00:00
|
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
|
|
|
2016-09-03 17:27:01 +00:00
|
|
|
services.wakeonlan.interfaces = [
|
|
|
|
{
|
|
|
|
interface = "enp3s0";
|
|
|
|
method = "magicpacket";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2015-06-09 15:40:27 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
beets
|
|
|
|
mediainfo
|
|
|
|
flac
|
2015-08-19 15:45:00 +00:00
|
|
|
|
|
|
|
recoll
|
|
|
|
uvccapture
|
2015-06-09 15:40:27 +00:00
|
|
|
];
|
|
|
|
|
2017-11-11 07:48:35 +00:00
|
|
|
# programs.ratbag.enable = true;
|
|
|
|
|
2016-08-26 05:32:38 +00:00
|
|
|
services.thermald.enable = true;
|
|
|
|
|
2015-11-22 11:10:31 +00:00
|
|
|
virtualisation.docker.enable = true;
|
2016-03-26 16:50:33 +00:00
|
|
|
users.extraUsers.gebner.extraGroups = [ "docker" "libvirtd" ];
|
|
|
|
|
2016-06-20 18:44:43 +00:00
|
|
|
virtualisation.virtualbox.host.enable = true;
|
|
|
|
|
2016-03-26 16:50:33 +00:00
|
|
|
# virtualisation.libvirtd.enable = true;
|
|
|
|
networking.firewall.checkReversePath = false;
|
2016-06-20 18:44:43 +00:00
|
|
|
# fileSystems."/var/lib/libvirt/images/vaccaria" = {
|
|
|
|
# device = "//vaccaria.mtlaa.gebner.org/export/tmp/vms";
|
|
|
|
# fsType = "cifs";
|
|
|
|
# options = [ "noauto" "x-systemd.automount" "credentials=/etc/smbcredentials/vaccaria"
|
|
|
|
# "forceuid" "forcegid" "uid=0" "gid=0" ];
|
|
|
|
# };
|
2016-03-26 16:50:33 +00:00
|
|
|
|
|
|
|
hardware.opengl.driSupport32Bit = true;
|
2015-11-22 11:10:31 +00:00
|
|
|
|
2015-11-22 13:13:49 +00:00
|
|
|
services.nix-serve = {
|
|
|
|
enable = true;
|
|
|
|
secretKeyFile = "/etc/nix-serve/secret.key";
|
|
|
|
};
|
2015-11-22 13:04:31 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [ config.services.nix-serve.port ];
|
2015-11-22 11:10:31 +00:00
|
|
|
|
2017-02-14 16:36:35 +00:00
|
|
|
services.openssh.forwardX11 = true;
|
|
|
|
|
|
|
|
# nixpkgs.config.packageOverrides = super: let self = super.pkgs; in {
|
|
|
|
# mesa_drivers = self.mesaDarwinOr (
|
|
|
|
# let mo = self.mesa_noglu.override {
|
|
|
|
# llvmPackages = pkgs.llvmPackages_39;
|
|
|
|
# grsecEnabled = false;
|
|
|
|
# enableTextureFloats = true;
|
|
|
|
# };
|
|
|
|
# in mo.drivers
|
|
|
|
# );
|
|
|
|
# };
|
2015-12-12 08:58:41 +00:00
|
|
|
|
2016-08-26 05:32:38 +00:00
|
|
|
#boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages_latest;
|
|
|
|
|
2017-02-14 16:36:35 +00:00
|
|
|
services.xserver = {
|
|
|
|
videoDrivers = [ "amdgpu" ];
|
2017-10-17 15:37:58 +00:00
|
|
|
deviceSection = ''
|
|
|
|
Option "TearFree" "on"
|
|
|
|
'';
|
2017-02-14 16:36:35 +00:00
|
|
|
};
|
2016-08-26 05:32:38 +00:00
|
|
|
|
2017-08-05 07:12:38 +00:00
|
|
|
services.transmission.enable = true;
|
|
|
|
|
2017-11-11 07:48:35 +00:00
|
|
|
nix.package = pkgs.nixUnstable;
|
|
|
|
|
|
|
|
services.postgresql = {
|
|
|
|
enable = true;
|
2018-02-24 17:00:00 +00:00
|
|
|
extraPlugins = [ pkgs.postgis ];
|
2017-11-11 07:48:35 +00:00
|
|
|
};
|
|
|
|
|
2015-05-21 13:27:06 +00:00
|
|
|
}
|