1 { lib, hostName, ... }:
 
   4     ../../nixos/profiles/hardware/apu6b4.nix
 
   5     ../../nixos/profiles/hardware/ME909u-521.nix
 
   6     ../../nixos/profiles/zfs.nix
 
   7     ../../nixos/profiles/zramSwap.nix
 
  10   # Setting the machine-id avoids to reencrypt all credentials
 
  11   # when reinstalling NixOS on a new drive.
 
  12   # Manually generated with : uuidgen | tr -d -
 
  13   environment.etc.machine-id.source = ./machine-id.clear;
 
  15   # The 32-bit host id of the host, formatted as 8 hexadecimal characters.
 
  16   # You should try to make this id unique among your hosts.
 
  17   # Manually generated with : uuidgen | head -c8
 
  18   networking.hostId = "408a404a";
 
  22     canTouchEfiVariables = true;
 
  23     efiSysMountPoint = "/boot/efi";
 
  30       #"/dev/disk/by-id/mmc-SU08G_0xb0320f0f"
 
  31       #"/dev/disk/by-id/usb-Generic-_Multi-Card_20071114173400000-0:0"
 
  32       "/dev/disk/by-id/ata-YMTC_JGS_2201060101833"
 
  34     configurationLimit = 9;
 
  38     #enableCryptodisk = true;
 
  40   boot.tmpOnTmpfs = true;
 
  42   boot.supportedFilesystems = [ /*"ntfs"*/ "vfat" ];
 
  43   boot.extraModulePackages = [
 
  44     #config.boot.kernelPackages.exfat-nofuse
 
  47   powerManagement.powertop.enable = true;
 
  48   #services.fprintd.enable = true;
 
  52       device = "${hostName}/root";
 
  57       device = "/dev/disk/by-partlabel/${hostName}_ssd_boot";
 
  60   fileSystems."/boot/efi" =
 
  62       device = "/dev/disk/by-partlabel/${hostName}_ssd_efi";
 
  67       device = "${hostName}/nix";
 
  72       device = "${hostName}/var";
 
  77       device = "${hostName}/home";
 
  83         device = "/dev/disk/by-partlabel/${hostName}_ssd_swap";
 
  86           cipher = "aes-xts-plain64";
 
  87           source = "/dev/urandom";
 
  92   hardware.pulseaudio.enable = lib.mkDefault true;
 
  93   #hardware.pulseaudio.tcp.enable = lib.mkDefault true;