2015-07-16 13:52:17 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2016-02-15 15:27:11 +00:00
|
|
|
../.
|
2016-06-25 16:38:30 +00:00
|
|
|
../2configs/hw/tp-x220.nix
|
2015-10-19 11:57:42 +00:00
|
|
|
../2configs/baseX.nix
|
2016-04-12 13:17:42 +00:00
|
|
|
../2configs/exim-retiolum.nix
|
2015-07-28 20:20:59 +00:00
|
|
|
../2configs/programs.nix
|
|
|
|
../2configs/bitcoin.nix
|
|
|
|
../2configs/browsers.nix
|
|
|
|
../2configs/games.nix
|
|
|
|
../2configs/pass.nix
|
|
|
|
../2configs/virtualbox.nix
|
|
|
|
../2configs/elster.nix
|
|
|
|
../2configs/steam.nix
|
|
|
|
../2configs/wine.nix
|
|
|
|
../2configs/chromium-patched.nix
|
2015-10-04 12:20:12 +00:00
|
|
|
../2configs/git.nix
|
2015-08-23 14:51:51 +00:00
|
|
|
../2configs/bitlbee.nix
|
2015-10-08 10:05:32 +00:00
|
|
|
../2configs/skype.nix
|
2015-12-12 17:22:09 +00:00
|
|
|
../2configs/teamviewer.nix
|
|
|
|
../2configs/libvirt.nix
|
|
|
|
../2configs/fetchWallpaper.nix
|
2016-06-22 17:21:11 +00:00
|
|
|
../2configs/c-base.nix
|
2016-04-19 11:23:49 +00:00
|
|
|
../2configs/mail.nix
|
2016-04-20 14:45:15 +00:00
|
|
|
../2configs/krebs-pass.nix
|
2016-06-13 11:48:43 +00:00
|
|
|
../2configs/umts.nix
|
2015-11-13 00:12:07 +00:00
|
|
|
{
|
|
|
|
#risk of rain port
|
|
|
|
krebs.iptables.tables.filter.INPUT.rules = [
|
|
|
|
{ predicate = "-p tcp --dport 11100"; target = "ACCEPT"; }
|
|
|
|
];
|
|
|
|
}
|
2016-04-13 14:29:13 +00:00
|
|
|
#{
|
|
|
|
# services.mysql = {
|
|
|
|
# enable = true;
|
|
|
|
# package = pkgs.mariadb;
|
|
|
|
# rootPassword = "<secrets>/mysql_rootPassword";
|
|
|
|
# };
|
|
|
|
#}
|
|
|
|
#{
|
|
|
|
# services.elasticsearch = {
|
|
|
|
# enable = true;
|
|
|
|
# plugins = [
|
|
|
|
# # pkgs.elasticsearchPlugins.elasticsearch_kopf
|
|
|
|
# ];
|
|
|
|
# };
|
|
|
|
#}
|
|
|
|
#{
|
|
|
|
# services.postgresql = {
|
|
|
|
# enable = true;
|
|
|
|
# package = pkgs.postgresql;
|
|
|
|
# };
|
|
|
|
#}
|
2015-07-16 13:52:17 +00:00
|
|
|
];
|
|
|
|
|
2015-10-19 12:00:15 +00:00
|
|
|
krebs.build.host = config.krebs.hosts.mors;
|
2015-07-27 11:54:29 +00:00
|
|
|
|
2015-07-16 13:52:17 +00:00
|
|
|
boot = {
|
|
|
|
loader.grub.enable = true;
|
|
|
|
loader.grub.version = 2;
|
|
|
|
loader.grub.device = "/dev/sda";
|
|
|
|
|
|
|
|
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" ];
|
|
|
|
};
|
|
|
|
fileSystems = {
|
|
|
|
"/" = {
|
|
|
|
device = "/dev/big/nix";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
"/boot" = {
|
|
|
|
device = "/dev/sda1";
|
|
|
|
};
|
|
|
|
|
|
|
|
"/mnt/loot" = {
|
|
|
|
device = "/dev/big/loot";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
"/home" = {
|
|
|
|
device = "/dev/big/home";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
"/home/lass" = {
|
|
|
|
device = "/dev/big/home-lass";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
2016-04-11 14:43:25 +00:00
|
|
|
"/bku" = {
|
2015-07-16 13:52:17 +00:00
|
|
|
device = "/dev/big/backups";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
"/home/games/.local/share/Steam" = {
|
|
|
|
device = "/dev/big/steam";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
"/home/virtual/virtual" = {
|
|
|
|
device = "/dev/big/virtual";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
"/mnt/public" = {
|
|
|
|
device = "/dev/big/public";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
2016-02-17 13:59:36 +00:00
|
|
|
|
|
|
|
"/mnt/conf" = {
|
|
|
|
device = "/dev/big/conf";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
2015-07-16 13:52:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
services.udev.extraRules = ''
|
2016-06-06 20:09:57 +00:00
|
|
|
SUBSYSTEM=="net", ATTR{address}=="00:24:d7:f0:a0:0c", NAME="wl0"
|
|
|
|
SUBSYSTEM=="net", ATTR{address}=="f0:de:f1:8f:85:c9", NAME="et0"
|
2015-07-16 13:52:17 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
#TODO activationScripts seem broken, fix them!
|
|
|
|
#activationScripts
|
|
|
|
#split up and move into base
|
|
|
|
system.activationScripts.powertopTunables = ''
|
|
|
|
#Enable Audio codec power management
|
|
|
|
echo '1' > '/sys/module/snd_hda_intel/parameters/power_save'
|
|
|
|
#VM writeback timeout
|
|
|
|
echo '1500' > '/proc/sys/vm/dirty_writeback_centisecs'
|
|
|
|
#Autosuspend for USB device Broadcom Bluetooth Device [Broadcom Corp]
|
2015-08-17 12:36:56 +00:00
|
|
|
#echo 'auto' > '/sys/bus/usb/devices/1-1.4/power/control'
|
2015-07-16 13:52:17 +00:00
|
|
|
#Autosuspend for USB device Biometric Coprocessor
|
2016-06-06 20:11:11 +00:00
|
|
|
#echo 'auto' > '/sys/bus/usb/devices/1-1.3/power/control'
|
2015-07-16 13:52:17 +00:00
|
|
|
|
|
|
|
#Runtime PMs
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:02.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:16.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:00.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:03:00.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.3/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.2/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.3/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:0d:00.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1b.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1a.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:19.0/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:16.3/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.1/power/control'
|
|
|
|
echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.4/power/control'
|
|
|
|
'';
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
2016-03-15 13:12:13 +00:00
|
|
|
acronym
|
2016-02-06 18:26:51 +00:00
|
|
|
cac-api
|
2015-10-03 12:37:34 +00:00
|
|
|
sshpass
|
2015-09-30 13:18:31 +00:00
|
|
|
get
|
2015-10-15 12:44:14 +00:00
|
|
|
teamspeak_client
|
2015-11-01 19:00:19 +00:00
|
|
|
hashPassword
|
2016-04-13 14:47:47 +00:00
|
|
|
urban
|
|
|
|
mk_sql_pair
|
2016-05-31 22:10:13 +00:00
|
|
|
remmina
|
2015-07-16 13:52:17 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
#TODO: fix this shit
|
|
|
|
##fprint stuff
|
|
|
|
##sudo fprintd-enroll $USER to save fingerprints
|
|
|
|
#services.fprintd.enable = true;
|
|
|
|
#security.pam.services.sudo.fprintAuth = true;
|
|
|
|
|
|
|
|
users.extraGroups = {
|
|
|
|
loot = {
|
|
|
|
members = [
|
|
|
|
config.users.extraUsers.mainUser.name
|
|
|
|
"firefox"
|
|
|
|
"chromium"
|
|
|
|
"google"
|
|
|
|
"virtual"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.mongodb = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
}
|