nixos-config/petalius.nix

137 lines
3.2 KiB
Nix
Raw Normal View History

2017-08-28 19:19:07 +02:00
{ config, pkgs, ... }:
{
imports =
[
./common.nix
./large-sw.nix
./uefi.nix
./fstrim.nix
2019-04-04 10:34:49 +02:00
./atmega.nix
2017-08-28 19:19:07 +02:00
];
environment.etc."lvm/lvm.conf".text = ''
devices {
issue_discards = 1
}
'';
boot.initrd.luks.devices = [
{
name = "nvme0n1p2";
device = "/dev/disk/by-uuid/5ca3d7ec-3f9e-4a08-8bc2-b26bfc3459c5";
preLVM = true;
allowDiscards = true;
}
];
services.xserver = {
2017-09-02 09:41:48 +02:00
dpi = 120;
2017-08-28 19:19:07 +02:00
libinput.enable = true;
config = ''
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchDevicePath "/dev/input/event*"
MatchIsPointer "true"
EndSection
'';
videoDrivers = [ "modesetting" ];
useGlamor = true;
};
programs.light.enable = true;
services.tlp.enable = true;
networking.hostName = "petalius";
networking.hostId = "cf58caa9";
2017-11-14 16:44:21 +01:00
# systemd.services.ModemManager = {
# enable = true;
# wantedBy = [ "multi-user.target" ];
# };
2017-08-28 19:19:07 +02:00
hardware.opengl.extraPackages = [ pkgs.vaapiIntel ];
nixpkgs.config.packageOverrides = pkgs: rec {
};
environment.systemPackages = with pkgs; [
unison
];
2019-10-03 12:30:24 +02:00
services.blueman.enable = true;
2017-08-28 19:19:07 +02:00
virtualisation.docker = {
enable = true;
storageDriver = "overlay2";
};
2019-07-17 18:05:54 +02:00
users.extraUsers.gebner.extraGroups = [ "docker" "libvirtd" "video" "input" "dialout" ];
2018-11-04 15:37:01 +01:00
virtualisation.libvirtd.enable = true;
2017-08-28 19:19:07 +02:00
2019-02-12 14:39:55 +01:00
virtualisation.virtualbox.host.enable = true;
2017-08-28 19:19:07 +02:00
boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages_5_5;
2019-07-17 18:11:18 +02:00
# boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages_4_19;
2017-08-28 23:31:53 +02:00
boot.kernelPatches = [
# { patch = ./len0073.patch; name = "len0073"; }
2017-08-28 23:31:53 +02:00
];
boot.kernelParams = [
# "psmouse.synaptics_intertouch=1"
"psmouse.proto=imps"
2017-08-28 23:31:53 +02:00
];
boot.kernelModules = [
"rmi_smbus"
"i2c_hid"
"psmouse"
2017-08-28 23:31:53 +02:00
];
2017-08-28 19:19:07 +02:00
2019-08-06 12:30:21 +02:00
# time.timeZone = pkgs.lib.mkOverride 10 "Asia/Tokyo";
2019-09-09 19:17:26 +02:00
# time.timeZone = pkgs.lib.mkOverride 10 "Europe/London";
2019-11-21 09:28:11 +01:00
# time.timeZone = pkgs.lib.mkOverride 10 "Europe/Lisbon";
2020-01-16 14:45:33 +01:00
# time.timeZone = pkgs.lib.mkOverride 10 "US/Eastern";
2017-08-28 19:19:07 +02:00
#services.avahi.nssmdns = true;
system.stateVersion = "18.03";
2018-05-22 21:15:31 +02:00
2018-09-01 15:40:10 +02:00
networking.wireguard.interfaces.wg0 = {
ips = ["10.59.0.2/16"];
privateKeyFile = "/etc/wgkeys/petalius";
allowedIPsAsRoutes = true;
2018-09-03 15:43:01 +02:00
postSetup = ''
2019-10-14 11:03:14 +02:00
${pkgs.systemd}/bin/resolvectl domain wg0 '~htdf.gebner.org' '~mtlaa.gebner.org' '~ams.gebner.org'
2019-10-03 12:30:33 +02:00
${pkgs.systemd}/bin/resolvectl dns wg0 10.58.0.1
2018-09-03 15:43:01 +02:00
'';
2018-09-01 15:40:10 +02:00
peers = [{
publicKey = "ByLlJbevlTBooAo2RIZGGJvBHKqA9qiOpHBvR5yuJX4=";
allowedIPs = ["10.56.0.0/14" "10.60.1.1"];
2019-10-03 12:30:33 +02:00
# endpoint = "htdf-gw.gebner.org:35869";
2019-10-03 20:10:37 +02:00
# endpoint = "80.109.2.154:35869";
endpoint = "127.0.0.1:35869";
2018-09-01 15:40:10 +02:00
}];
};
systemd.services.wireguard-wg0.wantedBy = pkgs.lib.mkOverride 10 [];
2019-10-03 20:10:37 +02:00
systemd.services.wstunnel = {
path = with pkgs; [
(haskell.lib.justStaticExecutables
(haskellPackages.callPackage ./pkgs/wstunnel.nix {}))
];
wantedBy = [ "wireguard-wg0.service" ];
after = [ "network.target" ];
script = ''
wstunnel -L 35869:htdf-gw.gebner.org:35869 -u wss://gebner.org
'';
};
2019-10-03 12:30:33 +02:00
services.resolved = {
domains = [];
enable = true;
};
2017-08-28 19:19:07 +02:00
}