nixos-config/petalius.nix

113 lines
2.5 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
];
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
];
virtualisation.docker = {
enable = true;
storageDriver = "overlay2";
};
users.extraUsers.gebner.extraGroups = [ "docker" "libvirtd" "video" ];
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
2019-02-12 14:39:55 +01: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"
];
boot.kernelModules = [
"rmi_smbus"
"i2c_hid"
"psmouse"
];
2017-08-28 19:19:07 +02:00
2018-10-04 08:42:22 +02:00
# time.timeZone = pkgs.lib.mkOverride 10 "Asia/Tokyo";
2018-07-21 20:39:42 +02:00
# time.timeZone = pkgs.lib.mkOverride 10 "Europe/London";
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 = ''
printf "nameserver 10.57.0.1" | ${pkgs.openresolv}/bin/resolvconf -a wg0 -m 0
'';
postShutdown = ''
${pkgs.openresolv}/bin/resolvconf -d wg0
'';
2018-09-01 15:40:10 +02:00
peers = [{
publicKey = "ByLlJbevlTBooAo2RIZGGJvBHKqA9qiOpHBvR5yuJX4=";
allowedIPs = ["10.56.0.0/14" "10.60.1.1"];
endpoint = "mtlaa-gw.gebner.org:35869";
}];
};
systemd.services.wireguard-wg0.wantedBy = pkgs.lib.mkOverride 10 [];
2017-08-28 19:19:07 +02:00
}