nixos-config/archachatina.nix

133 lines
3.1 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
[
2020-07-14 16:47:09 +02:00
./common-headless.nix
./sway.nix
2020-08-01 16:52:23 +02:00
# ./i3.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
}
'';
2020-05-22 11:17:53 +02:00
boot.initrd.luks.devices = {
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;
2020-05-22 11:17:53 +02:00
};
};
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";
}
];
2020-08-01 16:52:23 +02:00
# services.xserver.displayManager.defaultSession = pkgs.lib.mkForce "sway";
#
# users.extraUsers.presentation = {
# isNormalUser = true;
# extraGroups = [ "networkmanager" "audio" ];
# # shell = "${pkgs.zsh}/bin/zsh";
# shell = "/run/current-system/sw/bin/fish";
#
# password = if config.virtualisation != null then "" else null;
# };
2015-06-09 17:40:27 +02:00
environment.systemPackages = with pkgs; [
beets
2019-02-18 19:28:18 +01:00
piper
2015-06-09 17:40:27 +02:00
];
2016-08-26 07:32:38 +02:00
services.thermald.enable = true;
2020-07-24 21:23:06 +02:00
users.extraUsers.gebner.extraGroups = [ "libvirtd" ];
2016-03-26 17:50:33 +01:00
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" = {
2019-10-14 11:03:14 +02:00
device = "//vaccaria.htdf.gebner.org/export/tmp/vms";
2018-11-12 19:04:15 +01:00
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
2020-08-22 14:42:24 +02:00
hardware.opengl.extraPackages = with pkgs; [
rocm-opencl-icd
2020-09-09 19:15:55 +02:00
# rocm-runtime-ext
2020-08-22 14:42:24 +02: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;
2020-05-22 11:17:53 +02:00
# boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages_5_4;
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;
2019-11-03 13:35:04 +01:00
services.xserver.digimend.enable = true;
2020-09-09 19:15:55 +02:00
services.udev.extraRules = ''
SUBSYSTEM=="input", ENV{ID_BUS}=="usb" ENV{ID_VENDOR_ID}=="256c", \
ATTRS{name}=="* Touch *", ENV{ID_INPUT.tags}="low_res_touch"
'';
# virtualisation.anbox = {
# enable = true;
# };
system.stateVersion = "18.03";
2018-05-21 14:33:01 +02:00
2015-05-21 15:27:06 +02:00
}