nixos-config/archachatina.nix

118 lines
2.5 KiB
Nix
Raw Normal View History

2015-05-21 15:27:06 +02:00
{ config, pkgs, ... }:
{
imports =
2015-05-21 16:13:47 +02:00
[
./common.nix
# ./common-headless.nix ./sway.nix
./large-sw.nix
2015-05-21 16:13:47 +02:00
./uefi.nix
2015-12-06 10:03:22 +01:00
./fstrim.nix
2018-12-18 17:30:45 +01:00
./qemu-user.nix
2019-02-27 11:16:03 +01:00
./atmega.nix
2015-05-21 15:27:06 +02:00
];
2015-09-03 10:41:18 +02:00
environment.etc."lvm/lvm.conf".text = ''
devices {
issue_discards = 1
}
'';
boot.initrd.luks.devices = [
{
name = "sda2_crypt";
2017-04-09 17:57:14 +02:00
device = "/dev/disk/by-uuid/2e2e2824-e357-4a75-bddc-8cf386cd0f53";
2015-09-03 10:41:18 +02:00
preLVM = true;
allowDiscards = true;
}
];
2015-05-21 15:27:06 +02:00
networking.hostName = "archachatina"; # Define your hostname.
networking.hostId = "cc7ea3ba";
hardware.cpu.intel.updateMicrocode = true;
2016-09-03 19:27:01 +02:00
services.wakeonlan.interfaces = [
{
interface = "enp3s0";
method = "magicpacket";
}
];
2015-06-09 17:40:27 +02:00
environment.systemPackages = with pkgs; [
beets
mediainfo
flac
2018-11-18 17:02:31 +01:00
clementine
2015-08-19 17:45:00 +02:00
recoll
uvccapture
2019-02-18 19:28:18 +01:00
piper
2019-02-21 19:18:48 +01:00
blueman
2015-06-09 17:40:27 +02:00
];
2016-08-26 07:32:38 +02:00
services.thermald.enable = true;
2015-11-22 12:10:31 +01:00
virtualisation.docker.enable = true;
2016-03-26 17:50:33 +01:00
users.extraUsers.gebner.extraGroups = [ "docker" "libvirtd" ];
virtualisation.virtualbox.host.enable = true;
2016-06-20 20:44:43 +02:00
2018-11-12 19:04:15 +01:00
virtualisation.libvirtd = {
enable = true;
};
2016-03-26 17:50:33 +01:00
networking.firewall.checkReversePath = false;
2018-11-12 19:04:15 +01: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 17:50:33 +01:00
hardware.opengl.driSupport32Bit = true;
2015-11-22 12:10:31 +01:00
services.nix-serve = {
enable = true;
secretKeyFile = "/etc/nix-serve/secret.key";
};
networking.firewall.allowedTCPPorts = [ config.services.nix-serve.port ];
2015-11-22 12:10:31 +01:00
2017-02-14 17:36:35 +01: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
# );
# };
2016-08-26 07:32:38 +02:00
#boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages_latest;
2019-03-09 22:46:35 +01:00
# boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages;
2016-08-26 07:32:38 +02:00
2017-02-14 17:36:35 +01:00
services.xserver = {
videoDrivers = [ "amdgpu" ];
2017-10-17 17:37:58 +02:00
deviceSection = ''
Option "TearFree" "on"
'';
2017-02-14 17:36:35 +01:00
};
2016-08-26 07:32:38 +02:00
2017-11-11 08:48:35 +01:00
services.postgresql = {
enable = true;
extraPlugins = [ pkgs.postgis ];
2017-11-11 08:48:35 +01:00
};
2019-02-18 19:28:18 +01:00
services.ratbagd.enable = true;
# virtualisation.anbox = {
# enable = true;
# };
system.stateVersion = "18.03";
2018-05-21 14:33:01 +02:00
2015-05-21 15:27:06 +02:00
}