From a86f505f5d011ce5a5dba539bbda53fdc1b07a3c Mon Sep 17 00:00:00 2001 From: lassulus Date: Thu, 20 Jul 2017 23:40:58 +0200 Subject: krebs: init puyak --- krebs/1systems/puyak/config.nix | 55 +++++++++++++++++++++++++++++++++++++++++ krebs/1systems/puyak/source.nix | 3 +++ 2 files changed, 58 insertions(+) create mode 100644 krebs/1systems/puyak/config.nix create mode 100644 krebs/1systems/puyak/source.nix (limited to 'krebs/1systems/puyak') diff --git a/krebs/1systems/puyak/config.nix b/krebs/1systems/puyak/config.nix new file mode 100644 index 00000000..5e5f6cdb --- /dev/null +++ b/krebs/1systems/puyak/config.nix @@ -0,0 +1,55 @@ +{ config, pkgs, ... }: + +{ + imports = [ + + + + ]; + + krebs.build.host = config.krebs.hosts.puyak; + + boot = { + loader.systemd-boot.enable = true; + loader.efi.canTouchEfiVariables = true; + + initrd.luks.devices = [ { name = "luksroot"; device = "/dev/sda3"; } ]; + initrd.luks.cryptoModules = [ "aes" "sha512" "sha1" "xts" ]; + initrd.availableKernelModules = [ "xhci_hcd" "ehci_pci" "ahci" "usb_storage" ]; + }; + + fileSystems = { + "/" = { + device = "/dev/mapper/pool-root"; + fsType = "btrfs"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; + }; + "/boot" = { + device = "/dev/sda2"; + }; + "/home" = { + device = "/dev/mapper/pool-home"; + fsType = "btrfs"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; + }; + "/tmp" = { + device = "tmpfs"; + fsType = "tmpfs"; + options = ["nosuid" "nodev" "noatime"]; + }; + }; + + hardware.enableAllFirmware = true; + networking.wireless.enable = true; + nixpkgs.config.allowUnfree = true; + + services.logind.extraConfig = '' + HandleLidSwitch=ignore + ''; + + services.udev.extraRules = '' + SUBSYSTEM=="net", ATTR{address}=="8c:70:5a:b2:84:58", NAME="wl0" + SUBSYSTEM=="net", ATTR{address}=="3c:97:0e:07:b9:14", NAME="et0" + ''; + +} diff --git a/krebs/1systems/puyak/source.nix b/krebs/1systems/puyak/source.nix new file mode 100644 index 00000000..a2165189 --- /dev/null +++ b/krebs/1systems/puyak/source.nix @@ -0,0 +1,3 @@ +import { + name = "puyak"; +} -- cgit v1.2.3