nixos-config/archachatina.nix

118 lines
2.5 KiB
Nix
Raw Normal View History

2015-05-21 13:27:06 +00:00
{ config, pkgs, ... }:
{
imports =
2015-05-21 14:13:47 +00:00
[
./common.nix
# ./common-headless.nix ./sway.nix
./large-sw.nix
2015-05-21 14:13:47 +00:00
./uefi.nix
2015-12-06 09:03:22 +00:00
./fstrim.nix
2018-12-18 16:30:45 +00:00
./qemu-user.nix
2019-02-27 10:16:03 +00:00
./atmega.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";
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
2018-11-18 16:02:31 +00:00
clementine
2015-08-19 15:45:00 +00:00
recoll
uvccapture
2019-02-18 18:28:18 +00:00
piper
2019-02-21 18:18:48 +00:00
blueman
2015-06-09 15:40:27 +00:00
];
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" ];
virtualisation.virtualbox.host.enable = true;
2016-06-20 18:44:43 +00:00
2018-11-12 18:04:15 +00:00
virtualisation.libvirtd = {
enable = true;
};
2016-03-26 16:50:33 +00:00
networking.firewall.checkReversePath = false;
2018-11-12 18:04:15 +00:00
fileSystems."/var/lib/libvirt/images/vaccaria" = {
2019-10-14 09:03:14 +00:00
device = "//vaccaria.htdf.gebner.org/export/tmp/vms";
2018-11-12 18:04:15 +00:00
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
services.nix-serve = {
enable = true;
secretKeyFile = "/etc/nix-serve/secret.key";
};
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
# );
# };
2016-08-26 05:32:38 +00:00
#boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages_latest;
2019-03-09 21:46:35 +00:00
# boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages;
2016-08-26 05:32:38 +00:00
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-11-11 07:48:35 +00:00
services.postgresql = {
enable = true;
extraPlugins = [ pkgs.postgis ];
2017-11-11 07:48:35 +00:00
};
2019-02-18 18:28:18 +00:00
services.ratbagd.enable = true;
# virtualisation.anbox = {
# enable = true;
# };
system.stateVersion = "18.03";
2018-05-21 12:33:01 +00:00
2015-05-21 13:27:06 +00:00
}