2015-07-16 13:53:00 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2015-07-21 16:57:58 +00:00
|
|
|
with builtins;
|
2015-07-16 13:53:00 +00:00
|
|
|
{
|
|
|
|
imports = [
|
2016-02-15 15:27:11 +00:00
|
|
|
../.
|
2015-10-19 11:57:42 +00:00
|
|
|
../2configs/baseX.nix
|
2016-04-12 13:17:42 +00:00
|
|
|
../2configs/exim-retiolum.nix
|
2015-08-13 20:28:19 +00:00
|
|
|
../2configs/browsers.nix
|
|
|
|
../2configs/games.nix
|
|
|
|
../2configs/pass.nix
|
|
|
|
../2configs/bird.nix
|
2015-10-04 12:20:12 +00:00
|
|
|
../2configs/git.nix
|
2015-08-13 20:28:19 +00:00
|
|
|
../2configs/chromium-patched.nix
|
|
|
|
../2configs/retiolum.nix
|
2015-10-03 19:22:07 +00:00
|
|
|
../2configs/bitlbee.nix
|
|
|
|
../2configs/weechat.nix
|
2016-01-17 12:08:38 +00:00
|
|
|
../2configs/skype.nix
|
2016-07-05 07:18:16 +00:00
|
|
|
{
|
|
|
|
lass.umts = {
|
|
|
|
enable = true;
|
|
|
|
modem = "/dev/serial/by-id/usb-HUAWEI_Technologies_HUAWEI_Mobile-if00-port0";
|
|
|
|
};
|
|
|
|
}
|
2015-07-16 13:53:00 +00:00
|
|
|
];
|
|
|
|
|
2015-10-19 12:00:15 +00:00
|
|
|
krebs.build.host = config.krebs.hosts.uriel;
|
2015-07-27 11:54:29 +00:00
|
|
|
|
2015-07-16 13:53:00 +00:00
|
|
|
networking.wireless.enable = true;
|
|
|
|
|
|
|
|
hardware.enableAllFirmware = true;
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
boot = {
|
|
|
|
#kernelParams = [
|
|
|
|
# "acpi.brightness_switch_enabled=0"
|
|
|
|
#];
|
|
|
|
#loader.grub.enable = true;
|
|
|
|
#loader.grub.version = 2;
|
|
|
|
#loader.grub.device = "/dev/sda";
|
|
|
|
|
2016-07-08 07:43:12 +00:00
|
|
|
loader.gummiboot.enable = true;
|
|
|
|
loader.gummiboot.timeout = 5;
|
2015-07-16 13:53:00 +00:00
|
|
|
|
|
|
|
initrd.luks.devices = [ { name = "luksroot"; device = "/dev/sda2"; } ];
|
|
|
|
initrd.luks.cryptoModules = [ "aes" "sha512" "sha1" "xts" ];
|
|
|
|
initrd.availableKernelModules = [ "xhci_hcd" "ehci_pci" "ahci" "usb_storage" ];
|
|
|
|
#kernelModules = [ "kvm-intel" "msr" ];
|
|
|
|
kernelModules = [ "msr" ];
|
|
|
|
};
|
|
|
|
fileSystems = {
|
|
|
|
"/" = {
|
|
|
|
device = "/dev/pool/root";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
2016-04-11 14:47:06 +00:00
|
|
|
"/bku" = {
|
|
|
|
device = "/dev/pool/bku";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
2015-07-16 13:53:00 +00:00
|
|
|
"/boot" = {
|
|
|
|
device = "/dev/sda1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.udev.extraRules = ''
|
|
|
|
SUBSYSTEM=="net", ATTR{address}=="64:27:37:7d:d8:ae", NAME="wl0"
|
|
|
|
SUBSYSTEM=="net", ATTR{address}=="f0:de:f1:b8:c8:2e", NAME="et0"
|
|
|
|
'';
|
|
|
|
|
|
|
|
services.xserver.synaptics = {
|
|
|
|
enable = true;
|
|
|
|
twoFingerScroll = true;
|
|
|
|
accelFactor = "0.035";
|
|
|
|
additionalOptions = ''
|
|
|
|
Option "FingerHigh" "60"
|
|
|
|
Option "FingerLow" "60"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|