stockholm/lass/1systems/shodan/config.nix

61 lines
1.6 KiB
Nix
Raw Normal View History

2016-05-19 22:17:21 +00:00
{ config, pkgs, ... }:
2016-10-20 19:40:11 +00:00
with import <stockholm/lib>;
2016-05-19 22:17:21 +00:00
{
imports = [
<stockholm/lass>
2017-07-23 19:10:50 +00:00
#TODO reinstall with correct layout and use lass/hw/x220
<stockholm/krebs/2configs/hw/x220.nix>
<stockholm/lass/2configs/mouse.nix>
<stockholm/lass/2configs/retiolum.nix>
<stockholm/lass/2configs/baseX.nix>
<stockholm/lass/2configs/git.nix>
<stockholm/lass/2configs/exim-retiolum.nix>
<stockholm/lass/2configs/browsers.nix>
<stockholm/lass/2configs/programs.nix>
<stockholm/lass/2configs/fetchWallpaper.nix>
<stockholm/lass/2configs/backups.nix>
<stockholm/lass/2configs/wine.nix>
2017-08-06 14:13:12 +00:00
<stockholm/lass/2configs/bitcoin.nix>
2016-05-19 22:17:21 +00:00
];
krebs.build.host = config.krebs.hosts.shodan;
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/pool/nix";
2017-01-09 16:12:50 +00:00
fsType = "btrfs";
2016-05-19 22:17:21 +00:00
};
"/boot" = {
device = "/dev/sda1";
};
2016-06-06 20:12:55 +00:00
2016-10-11 15:35:53 +00:00
"/tmp" = {
device = "tmpfs";
fsType = "tmpfs";
options = ["nosuid" "nodev" "noatime"];
};
2016-11-07 21:14:38 +00:00
"/bku" = {
device = "/dev/pool/bku";
2017-01-09 16:12:50 +00:00
fsType = "btrfs";
2016-11-07 21:14:38 +00:00
};
2016-05-19 22:17:21 +00:00
};
2016-06-06 20:09:57 +00:00
services.udev.extraRules = ''
SUBSYSTEM=="net", ATTR{address}=="a0:88:b4:29:26:bc", NAME="wl0"
SUBSYSTEM=="net", ATTR{address}=="f0:de:f1:0c:a7:63", NAME="et0"
'';
2016-05-19 22:17:21 +00:00
}