From da03760eeb325a48e2fd743af3e7e89cfd204390 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 13 Oct 2014 03:25:09 +0200 Subject: machines: Add new configuration for 'tishtushi'. At the moment, this configuration is only preliminary and we still need to refine hardware configuration and of course the kernel configuration. Signed-off-by: aszlig --- machines/tishtushi.nix | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 machines/tishtushi.nix (limited to 'machines') diff --git a/machines/tishtushi.nix b/machines/tishtushi.nix new file mode 100644 index 00000000..0d1c2e5e --- /dev/null +++ b/machines/tishtushi.nix @@ -0,0 +1,46 @@ +{ config, pkgs, ... }: + +with pkgs.lib; + +let + rootUUID = "e33a3dda-a87d-473b-b113-37783aa35667"; + swapUUID = "e9f59283-143c-4c36-978c-c730c6ca27c7"; + storeUUID = "ce1db87b-d717-450d-a212-3685a224f626"; + diskID = "ata-Hitachi_HTS543232A7A384_E2P31243FGB6PJ"; +in { + imports = singleton ../common-workstation.nix; + + boot = { + kernelPackages = pkgs.linuxPackages_latest; + initrd.kernelModules = [ "fbcon" "usb_storage" ]; + loader.grub.device = "/dev/disk/by-id/${diskID}"; + loader.grub.timeout = 0; + }; + + networking.hostName = "tishtushi"; + networking.wireless.enable = true; + + fileSystems."/" = { + device = "/dev/disk/by-uuid/${rootUUID}"; + fsType = "btrfs"; + options = concatStringsSep "," [ + "space_cache" "compress=zlib" "noatime" + ]; + }; + + fileSystems."/nix/store" = { + device = "/dev/disk/by-uuid/${storeUUID}"; + fsType = "btrfs"; + options = concatStringsSep "," [ + "ssd" "compress-force=zlib" "noatime" + ]; + }; + + swapDevices = singleton { + device = "/dev/disk/by-uuid/${swapUUID}"; + }; + + services.xserver.videoDrivers = [ "intel" ]; + + nix.maxJobs = 4; +} -- cgit 1.4.1