{ config, lib, pkgs, ... }: { imports = [ ../config/desktop.nix ../config/thinkpad.nix ../config/yubikey.nix ../config/postgresql.nix # ../config/ap.nix ../config/pjournal.nix ]; services.pjournal.enable = true; services.thinkfan.enable = true; services.thinkfan.sensors = '' hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon4/temp1_input hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon4/temp2_input hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon4/temp3_input ''; services.openssh.enable = true; services.postgresql.package = lib.mkForce pkgs.postgresql_11; nixpkgs.config.allowUnfree = true; nixpkgs.config.packageOverrides = pkgs: { my-steam-run = (pkgs.steam.override { extraPkgs = pkgs: [ ]; }).run; }; environment.systemPackages = with pkgs; [ # my-steam-run # wine ]; networking = { hostName = "aji"; }; boot = { initrd.luks.devices = { cryptroot = { device = "/dev/disk/by-id/ata-INTEL_SSDSC2BW240H6_CVTR609508W0240CGN-part2"; allowDiscards = true; }; }; extraModulePackages = [ config.boot.kernelPackages.tp_smapi ]; extraModprobeConfig = '' options i915 enable_rc6=1 options thinkpad_acpi fan_control=1 ''; }; fileSystems = { "/boot" = lib.mkForce { mountPoint = "/boot"; device = "/dev/disk/by-uuid/829B-F56C"; fsType = "vfat"; }; "/" = { mountPoint = "/"; device = "/dev/mapper/cryptvg-root"; fsType = "btrfs"; options = ["subvol=aji-root" "discard" "compress=lzo"]; }; "/btrfs" = { mountPoint = "/btrfs"; device = "/dev/mapper/cryptvg-root"; fsType = "btrfs"; options = ["discard" "compress=lzo"]; }; }; swapDevices = [ { device = "/dev/mapper/cryptvg-swap"; } ]; }