all repos — nixfiles @ 05dd85210e465caa44ef7254f2781b2d12ba2882

System and user configuration, managed by nix and home-manager

Reformat files with alejandra
Alan Pearce alan@alanpearce.eu
Sun, 16 Oct 2022 23:49:18 +0200
commit

05dd85210e465caa44ef7254f2781b2d12ba2882

parent

472dbbdbb246cf3d8ce3a5c3c6cefaa07b7589df

103 files changed, 1688 insertions(+), 1301 deletions(-)

jump to
M flake.nixflake.nix
@@ -13,31 +13,36 @@ flake = false;     };
   };
 
-  outputs = { self, darwin, home-manager, nixpkgs, secrets, ... }@attrs:
-  let
-    darwinSystem =
-      "x86_64-darwin"; # aarch64 is still failing on some compiler-rt derivation
-      darwinPkgs = nixpkgs.legacyPackages.${darwinSystem};
-      nixosSystem = "x86_64-linux";
-      nixosPkgs = nixpkgs.legacyPackages.${nixosSystem};
+  outputs = {
+    self,
+    darwin,
+    home-manager,
+    nixpkgs,
+    secrets,
+    ...
+  } @ attrs: let
+    darwinSystem = "x86_64-darwin"; # aarch64 is still failing on some compiler-rt derivation
+    darwinPkgs = nixpkgs.legacyPackages.${darwinSystem};
+    nixosSystem = "x86_64-linux";
+    nixosPkgs = nixpkgs.legacyPackages.${nixosSystem};
   in {
     nixosConfigurations.prefect = nixpkgs.lib.nixosSystem {
       system = "x86_64-linux";
       specialArgs = attrs;
-      modules = [ ./system/prefect.nix ];
+      modules = [./system/prefect.nix];
     };
     darwinConfigurations.mba = darwin.lib.darwinSystem {
       system = darwinSystem;
       specialArgs = attrs;
-      modules = [ ./system/mba.nix ];
+      modules = [./system/mba.nix];
     };
     homeConfigurations."alan@mba" = home-manager.lib.homeManagerConfiguration {
       pkgs = darwinPkgs;
-      modules = [ ./user/mba.nix (secrets + "/default.nix") ];
+      modules = [./user/mba.nix (secrets + "/default.nix")];
     };
     homeConfigurations."alan@prefect" = home-manager.lib.homeManagerConfiguration {
       pkgs = nixosPkgs;
-      modules = [ ./user/prefect.nix (secrets + "/default.nix") ];
+      modules = [./user/prefect.nix (secrets + "/default.nix")];
     };
   };
 }
M system/mba.nixsystem/mba.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   imports = [
     ./settings/darwin.nix
     ./settings/programs/base.nix
@@ -35,3 +37,4 @@ auto-optimise-store = true;   };
 }
 # vim: sw=2 sts=2 expandtab autoindent smarttab
+
M system/modules/nextdns.nixsystem/modules/nextdns.nix
@@ -1,13 +1,18 @@-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+with lib; let
   inherit (pkgs) stdenv;
 
   cfg = config.networking.nextdns;
 
-  identifyingPrefix = if cfg.identifyDevice then "${config.networking.hostName}-" else "";
+  identifyingPrefix =
+    if cfg.identifyDevice
+    then "${config.networking.hostName}-"
+    else "";
 
   kresdConfig = {
     enable = true;
@@ -31,8 +36,7 @@ {'2a07:a8c1::', hostname='${identifyingPrefix}${cfg.configID}.dns2.nextdns.io'}       })))
     '';
   };
-in
-{
+in {
   options = {
     networking.nextdns.enable = mkOption {
       type = types.bool;
@@ -55,7 +59,6 @@ };   };
 
   config = mkIf cfg.enable {
-
     assertions = [
       {
         assertion = !(stdenv.isDarwin);
M system/prefect.nixsystem/prefect.nix
@@ -1,6 +1,12 @@-{ config, pkgs, nixpkgs, nixpkgs-unstable, nixos-hardware, ... }:
-
-{ imports = [
+{
+  config,
+  pkgs,
+  nixpkgs,
+  nixpkgs-unstable,
+  nixos-hardware,
+  ...
+}: {
+  imports = [
     (nixos-hardware + "/common/pc/ssd")
     (nixos-hardware + "/common/cpu/amd")
 
@@ -56,15 +62,15 @@ boot.extraModulePackages = with config.boot.kernelPackages; [     zenpower
   ];
 
-  boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ];
-  boot.initrd.kernelModules = [ ];
-  boot.kernelModules = [ "kvm-amd" ];
+  boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "sd_mod"];
+  boot.initrd.kernelModules = [];
+  boot.kernelModules = ["kvm-amd"];
 
   fileSystems = {
     "/" = {
       device = "/dev/disk/by-partlabel/nixos-root";
       fsType = "f2fs";
-      options = [ "atgc" "gc_merge" "lazytime" "nodiscard" ];
+      options = ["atgc" "gc_merge" "lazytime" "nodiscard"];
     };
 
     "/boot" = {
@@ -75,29 +81,34 @@     "/home" = {
       device = "/dev/disk/by-partlabel/home";
       fsType = "ext4";
-      options = [ "lazytime" "nodiscard" ];
+      options = ["lazytime" "nodiscard"];
     };
 
     "/mnt/data" = {
       device = "/dev/disk/by-partlabel/data";
       fsType = "ntfs3";
-      options = [ "uid=1000" "gid=100" "x-systemd-automount" "nofail" ];
+      options = ["uid=1000" "gid=100" "x-systemd-automount" "nofail"];
     };
 
     "/mnt/games" = {
       device = "/dev/disk/by-partlabel/games";
       fsType = "ntfs3";
-      options = [ "uid=1000" "gid=100" "x-systemd-automount" "nofail" ];
+      options = ["uid=1000" "gid=100" "x-systemd-automount" "nofail"];
     };
 
     "/mnt/windows" = {
       device = "/dev/disk/by-partlabel/windows";
       fsType = "ntfs3";
-      options = [ "x-systemd-automount" "nofail" ];
+      options = ["x-systemd-automount" "nofail"];
     };
   };
 
-  swapDevices = [ { label = "swap"; discardPolicy = "once"; } ];
+  swapDevices = [
+    {
+      label = "swap";
+      discardPolicy = "once";
+    }
+  ];
 
   services.xserver = {
     xautolock.enable = pkgs.lib.mkForce false;
M system/satoshipad.nixsystem/satoshipad.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   imports = [
     ./hardware-configuration.nix
 
M system/settings/base.nixsystem/settings/base.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   imports = [
     ../modules/nextdns.nix
   ];
@@ -18,5 +21,4 @@ networking.nextdns = {     configID = "abd6e5";
     identifyDevice = true;
   };
-
 }
M system/settings/configuration/berlin.nixsystem/settings/configuration/berlin.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ time.timeZone = "Europe/Berlin";
+{
+  config,
+  pkgs,
+  ...
+}: {
+  time.timeZone = "Europe/Berlin";
   location = {
     latitude = 52.586;
     longitude = 13.300;
M system/settings/configuration/british-english.nixsystem/settings/configuration/british-english.nix
@@ -1,4 +1,7 @@-{ config, pkgs, ... }:
-
-{ i18n.defaultLocale = "en_GB.UTF-8";
+{
+  config,
+  pkgs,
+  ...
+}: {
+  i18n.defaultLocale = "en_GB.UTF-8";
 }
M system/settings/configuration/england.nixsystem/settings/configuration/england.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ time.timeZone = "Europe/London";
+{
+  config,
+  pkgs,
+  ...
+}: {
+  time.timeZone = "Europe/London";
   services.redshift = {
     latitude = 52.2394;
     longitude = -0.9416;
M system/settings/configuration/networking.nixsystem/settings/configuration/networking.nix
@@ -1,7 +1,9 @@-{ config, pkgs, ... }:
-
 {
-  environment.systemPackages = with pkgs; [ lxqt.lxqt-policykit ]; # provides a default authentification client for policykit
+  config,
+  pkgs,
+  ...
+}: {
+  environment.systemPackages = with pkgs; [lxqt.lxqt-policykit]; # provides a default authentification client for policykit
   services.gvfs.enable = true; # enables gvfs
 
   imports = [
M system/settings/configuration/nix.nixsystem/settings/configuration/nix.nix
@@ -1,10 +1,13 @@-{ config, pkgs, ... }:
-
-{ nix = {
+{
+  config,
+  pkgs,
+  ...
+}: {
+  nix = {
     settings = {
       cores = 0;
       auto-optimise-store = true;
-      trusted-users = [ "@wheel" ];
+      trusted-users = ["@wheel"];
     };
 
     daemonCPUSchedPolicy = "idle";
@@ -24,7 +27,7 @@ }; 
   system.autoUpgrade = {
     enable = true;
-    flags = [ "--max-jobs" "2" ];
+    flags = ["--max-jobs" "2"];
   };
   systemd.services.nixos-upgrade = {
     script = pkgs.lib.mkForce ''
M system/settings/configuration/user.nixsystem/settings/configuration/user.nix
@@ -1,9 +1,12 @@-{ config, pkgs, ... }:
-
-{ users.extraUsers.alan = {
+{
+  config,
+  pkgs,
+  ...
+}: {
+  users.extraUsers.alan = {
     description = "Alan Pearce";
     isNormalUser = true;
-    extraGroups = [ "audio" "wheel" "lp" "adbusers" "docker" "nitrokey" "dialout" "pipewire" "networkmanager" "video" ];
+    extraGroups = ["audio" "wheel" "lp" "adbusers" "docker" "nitrokey" "dialout" "pipewire" "networkmanager" "video"];
     shell = "/run/current-system/sw/bin/zsh";
     initialPassword = "password";
     home = "/home/alan";
M system/settings/darwin.nixsystem/settings/darwin.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   services.nix-daemon = {
     enable = true;
     enableSocketListener = true;
M system/settings/gaming.nixsystem/settings/gaming.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   programs.steam.enable = true;
   programs.gamemode = {
     enable = true;
@@ -25,7 +27,7 @@ "context.properties" = {       "link.max-buffers" = 16;
       "log.level" = 2;
       "default.clock.rate" = 44100;
-      "default.clock.allowed_rates" = [ 44100 48000 88200 96000 ];
+      "default.clock.allowed_rates" = [44100 48000 88200 96000];
       "default.clock.quantum" = 32;
       "default.clock.min-quantum" = 32;
       "default.clock.max-quantum" = 32;
@@ -41,26 +43,26 @@ "rt.prio" = 88;           "rt.time.soft" = 200000;
           "rt.time.hard" = 200000;
         };
-        flags = [ "ifexists" "nofail" ];
+        flags = ["ifexists" "nofail"];
       }
-      { name = "libpipewire-module-protocol-native"; }
-      { name = "libpipewire-module-profiler"; }
-      { name = "libpipewire-module-metadata"; }
-      { name = "libpipewire-module-spa-device-factory"; }
-      { name = "libpipewire-module-spa-node-factory"; }
-      { name = "libpipewire-module-client-node"; }
-      { name = "libpipewire-module-client-device"; }
+      {name = "libpipewire-module-protocol-native";}
+      {name = "libpipewire-module-profiler";}
+      {name = "libpipewire-module-metadata";}
+      {name = "libpipewire-module-spa-device-factory";}
+      {name = "libpipewire-module-spa-node-factory";}
+      {name = "libpipewire-module-client-node";}
+      {name = "libpipewire-module-client-device";}
       {
         name = "libpipewire-module-portal";
-        flags = [ "ifexists" "nofail" ];
+        flags = ["ifexists" "nofail"];
       }
       {
         name = "libpipewire-module-access";
         args = {};
       }
-      { name = "libpipewire-module-adapter"; }
-      { name = "libpipewire-module-link-factory"; }
-      { name = "libpipewire-module-session-manager"; }
+      {name = "libpipewire-module-adapter";}
+      {name = "libpipewire-module-link-factory";}
+      {name = "libpipewire-module-session-manager";}
     ];
     "stream.properties" = {
       "node.latency" = "32/44100";
@@ -86,12 +88,12 @@ "rt.prio" = 88;           "rt.time.soft" = 200000;
           "rt.time.hard" = 200000;
         };
-        flags = [ "ifexists" "nofail" ];
+        flags = ["ifexists" "nofail"];
       }
-      { name = "libpipewire-module-protocol-native"; }
-      { name = "libpipewire-module-client-node"; }
-      { name = "libpipewire-module-adapter"; }
-      { name = "libpipewire-module-metadata"; }
+      {name = "libpipewire-module-protocol-native";}
+      {name = "libpipewire-module-client-node";}
+      {name = "libpipewire-module-adapter";}
+      {name = "libpipewire-module-metadata";}
       {
         name = "libpipewire-module-protocol-pulse";
         args = {
M system/settings/hardware/adb.nixsystem/settings/hardware/adb.nix
@@ -1,10 +1,12 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   programs.adb.enable = true;
   users.groups.adbusers = {};
 
   services.udev = {
-    packages = [ pkgs.android-udev-rules ];
+    packages = [pkgs.android-udev-rules];
   };
 }
M system/settings/hardware/audio.nixsystem/settings/hardware/audio.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ services.pipewire = {
+{
+  config,
+  pkgs,
+  ...
+}: {
+  services.pipewire = {
     enable = true;
     audio.enable = true;
     alsa.enable = true;
M system/settings/hardware/bare-metal.nixsystem/settings/hardware/bare-metal.nix
@@ -1,8 +1,11 @@-{ config, pkgs, ... }:
-
-{ environment.systemPackages = with pkgs; [
+{
+  config,
+  pkgs,
+  ...
+}: {
+  environment.systemPackages = with pkgs; [
     exfat
-		efibootmgr
+    efibootmgr
     cryptsetup
     dmidecode
     hdparm
@@ -28,7 +31,7 @@ # set scheduler for rotating disks     ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="1", ATTR{queue/scheduler}="bfq"
   '';
 
-  boot.kernelModules = [ "tcp_bbr" ];
+  boot.kernelModules = ["tcp_bbr"];
   boot.kernel.sysctl = {
     "net.core.default_qdisc" = "cake";
     "net.ipv4.tcp_allowed_congestion_control" = "bbr illinois reno lp";
@@ -44,6 +47,6 @@ algorithm = "zstd";   };
   boot.tmpOnTmpfs = true;
 
-  fileSystems."/".options = [ "noatime" "nodiratime" ];
-  fileSystems."/home".options = [ "noatime" "nodiratime" ];
+  fileSystems."/".options = ["noatime" "nodiratime"];
+  fileSystems."/home".options = ["noatime" "nodiratime"];
 }
M system/settings/hardware/bluetooth-audio.nixsystem/settings/hardware/bluetooth-audio.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   hardware = {
     bluetooth = {
       package = pkgs.bluezFull;
M system/settings/hardware/bluetooth.nixsystem/settings/hardware/bluetooth.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   hardware = {
     bluetooth = {
       enable = true;
M system/settings/hardware/connman.nixsystem/settings/hardware/connman.nix
@@ -1,9 +1,12 @@-{ config, pkgs, ... }:
-
-{ services.connman = {
+{
+  config,
+  pkgs,
+  ...
+}: {
+  services.connman = {
     enable = true;
     enableVPN = false;
-    extraFlags = [ "--nodnsproxy" ];
+    extraFlags = ["--nodnsproxy"];
   };
   networking.useDHCP = false;
 
M system/settings/hardware/grub2.nixsystem/settings/hardware/grub2.nix
@@ -1,6 +1,10 @@-{ config, pkgs, lib, ... }:
-
-{ boot.loader = {
+{
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
+  boot.loader = {
     grub = {
       enable = true;
       splashImage = null;
M system/settings/hardware/intel-gpu.nixsystem/settings/hardware/intel-gpu.nix
@@ -1,13 +1,15 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   # https://wiki.gentoo.org/wiki/Intel#Feature_support
   services.xserver = {
     useGlamor = true;
     deviceSection = ''
       Option      "DRI"            "3"
     '';
-    videoDrivers = [ "intel" ];
+    videoDrivers = ["intel"];
   };
 
   boot.kernelParams = [
M system/settings/hardware/iwd.nixsystem/settings/hardware/iwd.nix
@@ -1,10 +1,12 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   networking.wireless.iwd = {
     enable = true;
   };
-  users.users.alan.extraGroups = [ "network" ];
+  users.users.alan.extraGroups = ["network"];
 
   services.connman.wifi.backend = "iwd";
 }
M system/settings/hardware/keyboard.nixsystem/settings/hardware/keyboard.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   services.xserver = {
     layout = "us";
     xkbVariant = "intl-unicode";
M system/settings/hardware/keyboardio-model01.nixsystem/settings/hardware/keyboardio-model01.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ services.udev.extraRules = ''
+{
+  config,
+  pkgs,
+  ...
+}: {
+  services.udev.extraRules = ''
     SUBSYSTEMS=="usb", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="2300", SYMLINK+="model01", ENV{ID_MM_DEVICE_IGNORE}:="1", ENV{ID_MM_CANDIDATE}:="0"
     SUBSYSTEMS=="usb", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="2301", SYMLINK+="model01", ENV{ID_MM_DEVICE_IGNORE}:="1", ENV{ID_MM_CANDIDATE}:="0"
   '';
M system/settings/hardware/laptop.nixsystem/settings/hardware/laptop.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   imports = [
     ./bluetooth.nix
     ./bluetooth-audio.nix
@@ -10,10 +13,9 @@ ./personal-computer.nix     ../user-interface.nix
   ];
 
-  boot.kernelModules = [ "coretemp" ];
+  boot.kernelModules = ["coretemp"];
 
   environment.systemPackages = with pkgs; [
-
     powerstat
     powertop
 
@@ -28,7 +30,7 @@ services.autorandr = {     enable = true;
     defaultTarget = "common";
   };
-  systemd.services.autorandr.wantedBy = [ "graphical.target" ];
+  systemd.services.autorandr.wantedBy = ["graphical.target"];
 
   environment.etc.autorandr = {
     enable = true;
M system/settings/hardware/mouse.nixsystem/settings/hardware/mouse.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
-{ 
+{
+  config,
+  pkgs,
+  ...
+}: {
   services.xserver.libinput = {
     enable = true;
     mouse = {
M system/settings/hardware/network-manager.nixsystem/settings/hardware/network-manager.nix
@@ -1,6 +1,9 @@-{ config, lib, pkgs, ... }:
-
 {
+  config,
+  lib,
+  pkgs,
+  ...
+}: {
   networking = {
     networkmanager = {
       enable = true;
M system/settings/hardware/nitrokey.nixsystem/settings/hardware/nitrokey.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   hardware.nitrokey = {
     enable = true;
   };
M system/settings/hardware/nvidia-gpu.nixsystem/settings/hardware/nvidia-gpu.nix
@@ -1,16 +1,18 @@-{ config, pkgs, lib, ... }:
-
-let
-  nvidia_x11 = config.boot.kernelPackages.nvidia_x11;
-in
 {
-  services.xserver.videoDrivers = [ "nvidia" ];
+  config,
+  pkgs,
+  lib,
+  ...
+}: let
+  nvidia_x11 = config.boot.kernelPackages.nvidia_x11;
+in {
+  services.xserver.videoDrivers = ["nvidia"];
   boot = {
-    blacklistedKernelModules = [ "nouveau" ];
-    extraModulePackages = [ nvidia_x11 ];
+    blacklistedKernelModules = ["nouveau"];
+    extraModulePackages = [nvidia_x11];
   };
 
-  environment.systemPackages = [ nvidia_x11 ];
+  environment.systemPackages = [nvidia_x11];
   hardware.nvidia = {
     powerManagement = {
       enable = true;
M system/settings/hardware/nvme-root.nixsystem/settings/hardware/nvme-root.nix
@@ -1,5 +1,7 @@-{ config, pkgs, ...}:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   boot.kernelParams = ["elevator=none"];
 }
M system/settings/hardware/personal-computer.nixsystem/settings/hardware/personal-computer.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_zen;
   powerManagement.cpuFreqGovernor = "schedutil";
 }
M system/settings/hardware/printing.nixsystem/settings/hardware/printing.nix
@@ -1,13 +1,17 @@-{ config, pkgs, lib, ... }:
-
-{ services.printing.enable = true;
+{
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
+  services.printing.enable = true;
   systemd.services.cups.wantedBy = lib.mkForce [];
-  systemd.sockets.cups.wantedBy = [ "sockets.target" ];
+  systemd.sockets.cups.wantedBy = ["sockets.target"];
   systemd.services.cups-browsed.wantedBy = lib.mkForce [];
 
   systemd.timers.cups-browsed = {
     description = "Delayed startup of CUPS Remote Printer Discovery";
-    wantedBy = [ "timers.target" ];
+    wantedBy = ["timers.target"];
     timerConfig = {
       OnActiveSec = "2 min";
     };
M system/settings/hardware/systemd-boot.nixsystem/settings/hardware/systemd-boot.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ boot.loader.systemd-boot = {
+{
+  config,
+  pkgs,
+  ...
+}: {
+  boot.loader.systemd-boot = {
     enable = true;
     editor = false; # Don't allow modification
   };
M system/settings/hardware/thinkpad.nixsystem/settings/hardware/thinkpad.nix
@@ -1,7 +1,10 @@-{ config, pkgs, ... }:
-
-{ boot.kernelModules = [ ];
-  boot.blacklistedKernelModules = [ "thinkpad_ec" ];
+{
+  config,
+  pkgs,
+  ...
+}: {
+  boot.kernelModules = [];
+  boot.blacklistedKernelModules = ["thinkpad_ec"];
   boot.extraModulePackages = with config.boot.kernelPackages; [
     acpi_call
   ];
M system/settings/hardware/trackball.nixsystem/settings/hardware/trackball.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ services.xserver.config = ''
+{
+  config,
+  pkgs,
+  ...
+}: {
+  services.xserver.config = ''
     Section "InputClass"
         Identifier "Trackball (No Acceleration)"
         MatchIsPointer "yes"
M system/settings/hardware/trezor.nixsystem/settings/hardware/trezor.nix
@@ -1,10 +1,14 @@-{ config, lib, pkgs, ... }:
-
-{ services.trezord.enable = true;
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}: {
+  services.trezord.enable = true;
   environment.systemPackages = with pkgs; [
     gnupg
     pinentry
-    (python3.withPackages(ps: with ps; [ trezor_agent wheel ]))
+    (python3.withPackages (ps: with ps; [trezor_agent wheel]))
     trezor-suite
   ];
   programs.gnupg.agent = {
M system/settings/kubernetes.nixsystem/settings/kubernetes.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   networking.bridges = {
     cbr0.interfaces = [];
   };
M system/settings/machines/t470s.nixsystem/settings/machines/t470s.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ hardware.usbWwan.enable = false; # unused
+{
+  config,
+  pkgs,
+  ...
+}: {
+  hardware.usbWwan.enable = false; # unused
   systemd.services.ModemManager.enable = false;
 
   hardware.enableRedistributableFirmware = true;
M system/settings/programs/barrier.nixsystem/settings/programs/barrier.nix
@@ -1,7 +1,11 @@-{ config, pkgs, ... }: {
+{
+  config,
+  pkgs,
+  ...
+}: {
   environment.systemPackages = with pkgs; [
     barrier
   ];
 
-  networking.firewall.allowedTCPPorts = [ 24800 ];
+  networking.firewall.allowedTCPPorts = [24800];
 }
M system/settings/programs/base.nixsystem/settings/programs/base.nix
@@ -1,6 +1,4 @@-{ pkgs, ...}:
-
-{
+{pkgs, ...}: {
   environment.systemPackages = with pkgs; [
     cachix
     home-manager
M system/settings/programs/gnome.nixsystem/settings/programs/gnome.nix
@@ -1,7 +1,11 @@-{ config, lib, pkgs, ... }:
-
-with lib;
-{ services = {
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+with lib; {
+  services = {
     gnome3 = {
       gnome-documents.enable = false;
       gnome-user-share.enable = false;
M system/settings/programs/gnupg.nixsystem/settings/programs/gnupg.nix
@@ -1,10 +1,13 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   environment.systemPackages = with pkgs; [
     gnupg
     pinentry
-    (python3.withPackages(ps: with ps; [ trezor_agent wheel ]))
+    (python3.withPackages (ps: with ps; [trezor_agent wheel]))
   ];
   environment.variables.GNUPGHOME = "$HOME/.gnupg/trezor/";
 }
M system/settings/programs/i3.nixsystem/settings/programs/i3.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ services.xserver.windowManager = {
+{
+  config,
+  pkgs,
+  ...
+}: {
+  services.xserver.windowManager = {
     i3 = {
       enable = true;
       extraSessionCommands = ''
M system/settings/programs/kde.nixsystem/settings/programs/kde.nix
@@ -1,7 +1,11 @@-{ config, lib, pkgs, ... }:
-
-with lib;
-{ services = {
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+with lib; {
+  services = {
     xserver = {
       desktopManager = {
         plasma5.enable = true;
M system/settings/programs/shell.nixsystem/settings/programs/shell.nix
@@ -1,11 +1,19 @@-{ config, pkgs, ... }:
-
 {
-  programs.zsh = {
-    enable = true;
-    promptInit = "";
-  } // (if pkgs.stdenv.isDarwin then {} else {
-    enableGlobalCompInit = false;
-  });
+  config,
+  pkgs,
+  ...
+}: {
+  programs.zsh =
+    {
+      enable = true;
+      promptInit = "";
+    }
+    // (
+      if pkgs.stdenv.isDarwin
+      then {}
+      else {
+        enableGlobalCompInit = false;
+      }
+    );
   programs.bash.enableCompletion = true;
 }
M system/settings/programs/tor.nixsystem/settings/programs/tor.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   services.tor = {
     enable = true;
     client = {
@@ -17,7 +20,7 @@ };   systemd.services.tor.wantedBy = lib.mkForce [];
   systemd.timers.tor = {
     description = "Delayed startup of Tor";
-    wantedBy = [ "timers.target" ];
+    wantedBy = ["timers.target"];
     timerConfig = {
       OnActiveSec = "1 min";
     };
M system/settings/programs/window-manager.nixsystem/settings/programs/window-manager.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   services.xserver = {
     desktopManager.xterm.enable = false;
 
M system/settings/satoshipay.nixsystem/settings/satoshipay.nix
@@ -1,6 +1,10 @@-{ config, pkgs, fetchurl, lib, ... }:
-
-let
+{
+  config,
+  pkgs,
+  fetchurl,
+  lib,
+  ...
+}: let
   dockerConfig = {
     ipv6 = true;
     fixed-cidr-v6 = "fd69:2074:9fcd:b0fd::/64";
@@ -8,8 +12,7 @@ features = {       buildkit = true;
     };
   };
-in
-{
+in {
   virtualisation = {
     docker = {
       enable = true;
M system/settings/services/airplay-sink.nixsystem/settings/services/airplay-sink.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   services.pipewire.systemWide = false;
   services.shairport-sync = {
     enable = true;
M system/settings/services/samba.nixsystem/settings/services/samba.nix
@@ -1,16 +1,16 @@-{ config, pkgs, ... }:
-
-let
-  workgroup = "WORKGROUP";
-
-in
 {
+  config,
+  pkgs,
+  ...
+}: let
+  workgroup = "WORKGROUP";
+in {
   services.samba-wsdd = {
     inherit workgroup;
     enable = true;
   };
-  networking.firewall.allowedTCPPorts = [ 5357 ];
-  networking.firewall.allowedUDPPorts = [ 3702 ];
+  networking.firewall.allowedTCPPorts = [5357];
+  networking.firewall.allowedUDPPorts = [3702];
 
   services.samba = {
     enable = true;
M system/settings/services/syncthing.nixsystem/settings/services/syncthing.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ services.syncthing = {
+{
+  config,
+  pkgs,
+  ...
+}: {
+  services.syncthing = {
     enable = true;
     user = "alan";
     group = "users";
M system/settings/services/virtualisation.nixsystem/settings/services/virtualisation.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   virtualisation.libvirtd = {
     enable = true;
     onBoot = "ignore";
M system/settings/services/xserver.nixsystem/settings/services/xserver.nix
@@ -1,7 +1,11 @@-{ config, lib, pkgs, ... }:
-
-with lib;
-{ services.xserver = {
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+with lib; {
+  services.xserver = {
     enable = true;
     enableCtrlAltBackspace = true;
     exportConfiguration = true;
@@ -37,9 +41,9 @@ rgba = "rgb";       };
       useEmbeddedBitmaps = !config.fonts.fontconfig.antialias;
       defaultFonts = {
-        monospace = [ "IBM Plex Mono" ];
-        sansSerif = [ "Cantarell" ];
-        serif = [ "Times New Roman" ];
+        monospace = ["IBM Plex Mono"];
+        sansSerif = ["Cantarell"];
+        serif = ["Times New Roman"];
       };
 
       localConf = ''
@@ -57,28 +61,30 @@ </match>         </fontconfig>
       '';
     };
-    fonts = with pkgs; [
-      gohufont
-      dina-font
-      terminus_font
+    fonts = with pkgs;
+      [
+        gohufont
+        dina-font
+        terminus_font
 
-      corefonts
+        corefonts
 
-      emacs-all-the-icons-fonts
-      font-awesome_5
-      xorg.fontmiscmisc
-      xorg.fontcursormisc
-    ] ++ lib.optionals config.fonts.fontconfig.antialias [
-      cantarell-fonts
+        emacs-all-the-icons-fonts
+        font-awesome_5
+        xorg.fontmiscmisc
+        xorg.fontcursormisc
+      ]
+      ++ lib.optionals config.fonts.fontconfig.antialias [
+        cantarell-fonts
 
-      fira
-      fira-code
-      fira-mono
-      ibm-plex
+        fira
+        fira-code
+        fira-mono
+        ibm-plex
 
-      source-code-pro
-      source-sans-pro
-      source-serif-pro
-    ];
+        source-code-pro
+        source-sans-pro
+        source-serif-pro
+      ];
   };
 }
M system/settings/services/zeroconf.nixsystem/settings/services/zeroconf.nix
@@ -1,6 +1,10 @@-{ config, pkgs, lib, ... }:
-
-{ services.avahi = {
+{
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
+  services.avahi = {
     enable = true;
     nssmdns = true;
     ipv6 = true;
@@ -15,7 +19,7 @@ };   systemd.services.avahi-daemon.wantedBy = lib.mkForce [];
   systemd.timers.avahi-daemon = {
     description = "Delayed startup of Avahi";
-    wantedBy = [ "timers.target" ];
+    wantedBy = ["timers.target"];
     timerConfig = {
       OnActiveSec = "1 min";
     };
M system/settings/user-interface.nixsystem/settings/user-interface.nix
@@ -1,9 +1,14 @@-{ config, pkgs, lib, makeDesktopItem, ... }:
-
-{ documentation.info.enable = true;
+{
+  config,
+  pkgs,
+  lib,
+  makeDesktopItem,
+  ...
+}: {
+  documentation.info.enable = true;
   nixpkgs.config.firefox.enableOfficialBranding = true;
 
-  environment.pathsToLink = [ "/share/zsh" ];
+  environment.pathsToLink = ["/share/zsh"];
 
   environment.systemPackages = with pkgs; [
     aria2
@@ -31,7 +36,7 @@   services.devmon.enable = true;
 
   systemd.user.services.trash-clean = {
-    path = with pkgs; [ trash-cli ];
+    path = with pkgs; [trash-cli];
     description = "Remove old files from FreeDesktop.org trash";
 
     serviceConfig = {
@@ -40,7 +45,7 @@ };     script = "trash-empty 30";
   };
   systemd.user.timers.trash-clean = {
-    wantedBy = [ "default.target" ];
+    wantedBy = ["default.target"];
     timerConfig = {
       OnCalendar = "weekly";
       Persistent = true;
M user/config.nixuser/config.nix
@@ -1,4 +1,4 @@-{ pkgs }: {
+{pkgs}: {
   allowUnfree = true;
-  allowUnfreePredicate = (pkg: true);
+  allowUnfreePredicate = pkg: true;
 }
M user/mba.nixuser/mba.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   imports = [
     ./settings/base.nix
     ./settings/development/base.nix
M user/modules/eshell.nixuser/modules/eshell.nix
@@ -1,12 +1,15 @@-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let cfg = config.programs.emacs;
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+with lib; let
+  cfg = config.programs.emacs;
 in {
   options.programs.emacs.eshell = {
     aliases = mkOption {
-      default = { };
+      default = {};
       type = types.attrsOf types.str;
       example = {
         ll = "ls -l $*";
M user/modules/nvim-coc.nixuser/modules/nvim-coc.nix
@@ -1,12 +1,13 @@-{ config,  lib, pkgs, ... }:
-
-with lib;
-
-let
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+with lib; let
   inherit (pkgs) stdenv;
   cfg = config.programs.neovim.coc;
-in
-{
+in {
   options.programs.neovim.coc = {
     config = mkOption {
       type = types.attrs;
M user/modules/tabnine.nixuser/modules/tabnine.nix
@@ -1,32 +1,35 @@-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+with lib; let
   inherit (pkgs) stdenv;
   cfg = config.programs.tabnine;
   lspConfigFile = config:
-  pkgs.runCommand "TabNine.toml"
-  {
-    buildInputs = [ pkgs.remarshal ];
-    preferLocalBuild = true;
-    allowSubstitutes = false;
-  }
-  ''
-    remarshal -if json -of toml \
-    < ${pkgs.writeText "config.json" (builtins.toJSON cfg.lspConfig)} \
-    | sed  -e 's/^\["\(.*\)"\]/[\1]/' \
-    > $out
-  '';
-in
-{
-
+    pkgs.runCommand "TabNine.toml"
+    {
+      buildInputs = [pkgs.remarshal];
+      preferLocalBuild = true;
+      allowSubstitutes = false;
+    }
+    ''
+      remarshal -if json -of toml \
+      < ${pkgs.writeText "config.json" (builtins.toJSON cfg.lspConfig)} \
+      | sed  -e 's/^\["\(.*\)"\]/[\1]/' \
+      > $out
+    '';
+in {
   options.programs.tabnine = {
     enable = mkEnableOption "TabNine, Smart Compose for code.";
 
     configDir = mkOption {
       type = types.str;
-      default = if stdenv.isDarwin then "Library/Preferences/TabNine" else "${config.xdg.configHome}/TabNine";
+      default =
+        if stdenv.isDarwin
+        then "Library/Preferences/TabNine"
+        else "${config.xdg.configHome}/TabNine";
       description = ''
         Location of TabNine configuration directory relative to \$HOME
       '';
@@ -34,7 +37,7 @@ }; 
     config = mkOption {
       type = types.attrs;
-      default = { };
+      default = {};
       description = ''
         TabNine configuration written to
         <filename>\${configDir}/tabnine_config.json</filename>
M user/overlays/extra-packages.nixuser/overlays/extra-packages.nix
@@ -1,4 +1,3 @@-self: super:
-{
+self: super: {
   lumen = super.callPackage ../packages/lumen {};
 }
M user/packages/lumen/default.nixuser/packages/lumen/default.nix
@@ -1,5 +1,10 @@-{ stdenv, lib, go, buildGoPackage, fetchFromGitHub }:
-
+{
+  stdenv,
+  lib,
+  go,
+  buildGoPackage,
+  fetchFromGitHub,
+}:
 buildGoPackage rec {
   pname = "lumen";
   version = "0.4.1";
M user/packages/node2nix/default.nixuser/packages/node2nix/default.nix
@@ -1,17 +1,22 @@ # This file has been generated by node2nix 1.11.1. Do not edit!
-
-{pkgs ? import <nixpkgs> {
-  inherit system;
-}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-18_x"}:
-
-let
+{
+  pkgs ?
+    import <nixpkgs> {
+      inherit system;
+    },
+  system ? builtins.currentSystem,
+  nodejs ? pkgs."nodejs-18_x",
+}: let
   nodeEnv = import ./node-env.nix {
     inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
     inherit pkgs nodejs;
-    libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
+    libtool =
+      if pkgs.stdenv.isDarwin
+      then pkgs.darwin.cctools
+      else null;
   };
 in
-import ./node-packages.nix {
-  inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
-  inherit nodeEnv;
-}
+  import ./node-packages.nix {
+    inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
+    inherit nodeEnv;
+  }
M user/packages/node2nix/node-env.nixuser/packages/node2nix/node-env.nix
@@ -1,12 +1,25 @@ # This file originates from node2nix
-
-{lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}:
-
-let
+{
+  lib,
+  stdenv,
+  nodejs,
+  python2,
+  pkgs,
+  libtool,
+  runCommand,
+  writeTextFile,
+  writeShellScript,
+}: let
   # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master
-  utillinux = if pkgs ? utillinux then pkgs.utillinux else pkgs.util-linux;
+  utillinux =
+    if pkgs ? utillinux
+    then pkgs.utillinux
+    else pkgs.util-linux;
 
-  python = if nodejs ? python then nodejs.python else python2;
+  python =
+    if nodejs ? python
+    then nodejs.python
+    else python2;
 
   # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
   tarWrapper = runCommand "tarWrapper" {} ''
@@ -21,13 +34,16 @@ chmod +x $out/bin/tar   '';
 
   # Function that generates a TGZ file from a NPM project
-  buildNodeSourceDist =
-    { name, version, src, ... }:
-
+  buildNodeSourceDist = {
+    name,
+    version,
+    src,
+    ...
+  }:
     stdenv.mkDerivation {
       name = "node-tarball-${name}-${version}";
       inherit src;
-      buildInputs = [ nodejs ];
+      buildInputs = [nodejs];
       buildPhase = ''
         export HOME=$TMPDIR
         tgzFile=$(npm pack | tail -n 1) # Hooks to the pack command will add output (https://docs.npmjs.com/misc/scripts)
@@ -40,146 +56,158 @@ echo "file source-dist $out/tarballs/$tgzFile" >> $out/nix-support/hydra-build-products       '';
     };
 
-    # Common shell logic
-    installPackage = writeShellScript "install-package" ''
-      installPackage() {
-      local packageName=$1 src=$2
+  # Common shell logic
+  installPackage = writeShellScript "install-package" ''
+    installPackage() {
+    local packageName=$1 src=$2
 
-      local strippedName
+    local strippedName
 
-      local DIR=$PWD
-      cd $TMPDIR
+    local DIR=$PWD
+    cd $TMPDIR
 
-      unpackFile $src
+    unpackFile $src
 
-      # Make the base dir in which the target dependency resides first
-      mkdir -p "$(dirname "$DIR/$packageName")"
+    # Make the base dir in which the target dependency resides first
+    mkdir -p "$(dirname "$DIR/$packageName")"
 
-      if [ -f "$src" ]
-      then
-      # Figure out what directory has been unpacked
-      packageDir="$(find . -maxdepth 1 -type d | tail -1)"
+    if [ -f "$src" ]
+    then
+    # Figure out what directory has been unpacked
+    packageDir="$(find . -maxdepth 1 -type d | tail -1)"
 
-      # Restore write permissions to make building work
-      find "$packageDir" -type d -exec chmod u+x {} \;
-      chmod -R u+w "$packageDir"
+    # Restore write permissions to make building work
+    find "$packageDir" -type d -exec chmod u+x {} \;
+    chmod -R u+w "$packageDir"
 
-      # Move the extracted tarball into the output folder
-      mv "$packageDir" "$DIR/$packageName"
-      elif [ -d "$src" ]
-      then
-      # Get a stripped name (without hash) of the source directory.
-      # On old nixpkgs it's already set internally.
-      if [ -z "$strippedName" ]
-      then
-      strippedName="$(stripHash $src)"
-      fi
+    # Move the extracted tarball into the output folder
+    mv "$packageDir" "$DIR/$packageName"
+    elif [ -d "$src" ]
+    then
+    # Get a stripped name (without hash) of the source directory.
+    # On old nixpkgs it's already set internally.
+    if [ -z "$strippedName" ]
+    then
+    strippedName="$(stripHash $src)"
+    fi
 
-      # Restore write permissions to make building work
-      chmod -R u+w "$strippedName"
+    # Restore write permissions to make building work
+    chmod -R u+w "$strippedName"
 
-      # Move the extracted directory into the output folder
-      mv "$strippedName" "$DIR/$packageName"
-      fi
+    # Move the extracted directory into the output folder
+    mv "$strippedName" "$DIR/$packageName"
+    fi
 
-      # Change to the package directory to install dependencies
-      cd "$DIR/$packageName"
-      }
-    '';
+    # Change to the package directory to install dependencies
+    cd "$DIR/$packageName"
+    }
+  '';
 
-    # Bundle the dependencies of the package
-    #
-    # Only include dependencies if they don't exist. They may also be bundled in the package.
-    includeDependencies = {dependencies}:
+  # Bundle the dependencies of the package
+  #
+  # Only include dependencies if they don't exist. They may also be bundled in the package.
+  includeDependencies = {dependencies}:
     lib.optionalString (dependencies != []) (
       ''
         mkdir -p node_modules
         cd node_modules
       ''
-      + (lib.concatMapStrings (dependency:
-      ''
-        if [ ! -e "${dependency.packageName}" ]; then
-        ${composePackage dependency}
-        fi
-      ''
-      ) dependencies)
+      + (lib.concatMapStrings (
+          dependency: ''
+            if [ ! -e "${dependency.packageName}" ]; then
+            ${composePackage dependency}
+            fi
+          ''
+        )
+        dependencies)
       + ''
         cd ..
       ''
     );
 
-    # Recursively composes the dependencies of a package
-    composePackage = { name, packageName, src, dependencies ? [], ... }@args:
+  # Recursively composes the dependencies of a package
+  composePackage = {
+    name,
+    packageName,
+    src,
+    dependencies ? [],
+    ...
+  } @ args:
     builtins.addErrorContext "while evaluating node package '${packageName}'" ''
       installPackage "${packageName}" "${src}"
-      ${includeDependencies { inherit dependencies; }}
+      ${includeDependencies {inherit dependencies;}}
       cd ..
       ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
     '';
 
-    pinpointDependencies = {dependencies, production}:
-    let
-      pinpointDependenciesFromPackageJSON = writeTextFile {
-        name = "pinpointDependencies.js";
-        text = ''
-          var fs = require('fs');
-          var path = require('path');
+  pinpointDependencies = {
+    dependencies,
+    production,
+  }: let
+    pinpointDependenciesFromPackageJSON = writeTextFile {
+      name = "pinpointDependencies.js";
+      text = ''
+        var fs = require('fs');
+        var path = require('path');
 
-          function resolveDependencyVersion(location, name) {
-          if(location == process.env['NIX_STORE']) {
-          return null;
-          } else {
-          var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json");
+        function resolveDependencyVersion(location, name) {
+        if(location == process.env['NIX_STORE']) {
+        return null;
+        } else {
+        var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json");
 
-          if(fs.existsSync(dependencyPackageJSON)) {
-          var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON));
+        if(fs.existsSync(dependencyPackageJSON)) {
+        var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON));
 
-          if(dependencyPackageObj.name == name) {
-          return dependencyPackageObj.version;
-          }
-          } else {
-          return resolveDependencyVersion(path.resolve(location, ".."), name);
-          }
-          }
-          }
+        if(dependencyPackageObj.name == name) {
+        return dependencyPackageObj.version;
+        }
+        } else {
+        return resolveDependencyVersion(path.resolve(location, ".."), name);
+        }
+        }
+        }
 
-          function replaceDependencies(dependencies) {
-          if(typeof dependencies == "object" && dependencies !== null) {
-          for(var dependency in dependencies) {
-          var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency);
+        function replaceDependencies(dependencies) {
+        if(typeof dependencies == "object" && dependencies !== null) {
+        for(var dependency in dependencies) {
+        var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency);
 
-          if(resolvedVersion === null) {
-          process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n");
-          } else {
-          dependencies[dependency] = resolvedVersion;
-          }
-          }
-          }
-          }
+        if(resolvedVersion === null) {
+        process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n");
+        } else {
+        dependencies[dependency] = resolvedVersion;
+        }
+        }
+        }
+        }
 
-          /* Read the package.json configuration */
-          var packageObj = JSON.parse(fs.readFileSync('./package.json'));
+        /* Read the package.json configuration */
+        var packageObj = JSON.parse(fs.readFileSync('./package.json'));
 
-          /* Pinpoint all dependencies */
-          replaceDependencies(packageObj.dependencies);
-          if(process.argv[2] == "development") {
-          replaceDependencies(packageObj.devDependencies);
-          }
-          else {
-          packageObj.devDependencies = {};
-          }
-          replaceDependencies(packageObj.optionalDependencies);
-          replaceDependencies(packageObj.peerDependencies);
+        /* Pinpoint all dependencies */
+        replaceDependencies(packageObj.dependencies);
+        if(process.argv[2] == "development") {
+        replaceDependencies(packageObj.devDependencies);
+        }
+        else {
+        packageObj.devDependencies = {};
+        }
+        replaceDependencies(packageObj.optionalDependencies);
+        replaceDependencies(packageObj.peerDependencies);
 
-          /* Write the fixed package.json file */
-          fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2));
-        '';
-      };
-    in
-    ''
-      node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"}
+        /* Write the fixed package.json file */
+        fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2));
+      '';
+    };
+  in ''
+    node ${pinpointDependenciesFromPackageJSON} ${
+      if production
+      then "production"
+      else "development"
+    }
 
-      ${lib.optionalString (dependencies != [])
+    ${lib.optionalString (dependencies != [])
       ''
         if [ -d node_modules ]
         then
@@ -188,320 +216,335 @@ ${lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies}         cd ..
         fi
       ''}
-    '';
+  '';
 
-    # Recursively traverses all dependencies of a package and pinpoints all
-    # dependencies in the package.json file to the versions that are actually
-    # being used.
+  # Recursively traverses all dependencies of a package and pinpoints all
+  # dependencies in the package.json file to the versions that are actually
+  # being used.
 
-    pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args:
-    ''
-      if [ -d "${packageName}" ]
-      then
-      cd "${packageName}"
-      ${pinpointDependencies { inherit dependencies production; }}
-      cd ..
-      ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
-      fi
-    '';
+  pinpointDependenciesOfPackage = {
+    packageName,
+    dependencies ? [],
+    production ? true,
+    ...
+  } @ args: ''
+    if [ -d "${packageName}" ]
+    then
+    cd "${packageName}"
+    ${pinpointDependencies {inherit dependencies production;}}
+    cd ..
+    ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
+    fi
+  '';
 
-    # Extract the Node.js source code which is used to compile packages with
-    # native bindings
-    nodeSources = runCommand "node-sources" {} ''
-      tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
-      mv node-* $out
-    '';
+  # Extract the Node.js source code which is used to compile packages with
+  # native bindings
+  nodeSources = runCommand "node-sources" {} ''
+    tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
+    mv node-* $out
+  '';
 
-    # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty)
-    addIntegrityFieldsScript = writeTextFile {
-      name = "addintegrityfields.js";
-      text = ''
-        var fs = require('fs');
-        var path = require('path');
+  # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty)
+  addIntegrityFieldsScript = writeTextFile {
+    name = "addintegrityfields.js";
+    text = ''
+      var fs = require('fs');
+      var path = require('path');
 
-        function augmentDependencies(baseDir, dependencies) {
-        for(var dependencyName in dependencies) {
-        var dependency = dependencies[dependencyName];
+      function augmentDependencies(baseDir, dependencies) {
+      for(var dependencyName in dependencies) {
+      var dependency = dependencies[dependencyName];
 
-        // Open package.json and augment metadata fields
-        var packageJSONDir = path.join(baseDir, "node_modules", dependencyName);
-        var packageJSONPath = path.join(packageJSONDir, "package.json");
+      // Open package.json and augment metadata fields
+      var packageJSONDir = path.join(baseDir, "node_modules", dependencyName);
+      var packageJSONPath = path.join(packageJSONDir, "package.json");
 
-        if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored
-        console.log("Adding metadata fields to: "+packageJSONPath);
-        var packageObj = JSON.parse(fs.readFileSync(packageJSONPath));
+      if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored
+      console.log("Adding metadata fields to: "+packageJSONPath);
+      var packageObj = JSON.parse(fs.readFileSync(packageJSONPath));
 
-        if(dependency.integrity) {
-        packageObj["_integrity"] = dependency.integrity;
-        } else {
-        packageObj["_integrity"] = "sha1-000000000000000000000000000="; // When no _integrity string has been provided (e.g. by Git dependencies), add a dummy one. It does not seem to harm and it bypasses downloads.
-        }
+      if(dependency.integrity) {
+      packageObj["_integrity"] = dependency.integrity;
+      } else {
+      packageObj["_integrity"] = "sha1-000000000000000000000000000="; // When no _integrity string has been provided (e.g. by Git dependencies), add a dummy one. It does not seem to harm and it bypasses downloads.
+      }
 
-        if(dependency.resolved) {
-        packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided
-        } else {
-        packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories.
-        }
+      if(dependency.resolved) {
+      packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided
+      } else {
+      packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories.
+      }
 
-        if(dependency.from !== undefined) { // Adopt from property if one has been provided
-        packageObj["_from"] = dependency.from;
-        }
+      if(dependency.from !== undefined) { // Adopt from property if one has been provided
+      packageObj["_from"] = dependency.from;
+      }
 
-        fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2));
-        }
+      fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2));
+      }
 
-        // Augment transitive dependencies
-        if(dependency.dependencies !== undefined) {
-        augmentDependencies(packageJSONDir, dependency.dependencies);
-        }
-        }
-        }
+      // Augment transitive dependencies
+      if(dependency.dependencies !== undefined) {
+      augmentDependencies(packageJSONDir, dependency.dependencies);
+      }
+      }
+      }
 
-        if(fs.existsSync("./package-lock.json")) {
-        var packageLock = JSON.parse(fs.readFileSync("./package-lock.json"));
+      if(fs.existsSync("./package-lock.json")) {
+      var packageLock = JSON.parse(fs.readFileSync("./package-lock.json"));
 
-        if(![1, 2].includes(packageLock.lockfileVersion)) {
-        process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n");
-        process.exit(1);
-        }
+      if(![1, 2].includes(packageLock.lockfileVersion)) {
+      process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n");
+      process.exit(1);
+      }
 
-        if(packageLock.dependencies !== undefined) {
-        augmentDependencies(".", packageLock.dependencies);
-        }
-        }
-      '';
-    };
-
-    # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes
-    reconstructPackageLock = writeTextFile {
-      name = "reconstructpackagelock.js";
-      text = ''
-        var fs = require('fs');
-        var path = require('path');
+      if(packageLock.dependencies !== undefined) {
+      augmentDependencies(".", packageLock.dependencies);
+      }
+      }
+    '';
+  };
 
-        var packageObj = JSON.parse(fs.readFileSync("package.json"));
+  # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes
+  reconstructPackageLock = writeTextFile {
+    name = "reconstructpackagelock.js";
+    text = ''
+      var fs = require('fs');
+      var path = require('path');
 
-        var lockObj = {
-        name: packageObj.name,
-        version: packageObj.version,
-        lockfileVersion: 2,
-        requires: true,
-        packages: {
-        "": {
-        name: packageObj.name,
-        version: packageObj.version,
-        license: packageObj.license,
-        bin: packageObj.bin,
-        dependencies: packageObj.dependencies,
-        engines: packageObj.engines,
-        optionalDependencies: packageObj.optionalDependencies
-        }
-        },
-        dependencies: {}
-        };
+      var packageObj = JSON.parse(fs.readFileSync("package.json"));
 
-        function augmentPackageJSON(filePath, packages, dependencies) {
-        var packageJSON = path.join(filePath, "package.json");
-        if(fs.existsSync(packageJSON)) {
-        var packageObj = JSON.parse(fs.readFileSync(packageJSON));
-        packages[filePath] = {
-        version: packageObj.version,
-        integrity: "sha1-000000000000000000000000000=",
-        dependencies: packageObj.dependencies,
-        engines: packageObj.engines,
-        optionalDependencies: packageObj.optionalDependencies
-        };
-        dependencies[packageObj.name] = {
-        version: packageObj.version,
-        integrity: "sha1-000000000000000000000000000=",
-        dependencies: {}
-        };
-        processDependencies(path.join(filePath, "node_modules"), packages, dependencies[packageObj.name].dependencies);
-        }
-        }
+      var lockObj = {
+      name: packageObj.name,
+      version: packageObj.version,
+      lockfileVersion: 2,
+      requires: true,
+      packages: {
+      "": {
+      name: packageObj.name,
+      version: packageObj.version,
+      license: packageObj.license,
+      bin: packageObj.bin,
+      dependencies: packageObj.dependencies,
+      engines: packageObj.engines,
+      optionalDependencies: packageObj.optionalDependencies
+      }
+      },
+      dependencies: {}
+      };
 
-        function processDependencies(dir, packages, dependencies) {
-        if(fs.existsSync(dir)) {
-        var files = fs.readdirSync(dir);
+      function augmentPackageJSON(filePath, packages, dependencies) {
+      var packageJSON = path.join(filePath, "package.json");
+      if(fs.existsSync(packageJSON)) {
+      var packageObj = JSON.parse(fs.readFileSync(packageJSON));
+      packages[filePath] = {
+      version: packageObj.version,
+      integrity: "sha1-000000000000000000000000000=",
+      dependencies: packageObj.dependencies,
+      engines: packageObj.engines,
+      optionalDependencies: packageObj.optionalDependencies
+      };
+      dependencies[packageObj.name] = {
+      version: packageObj.version,
+      integrity: "sha1-000000000000000000000000000=",
+      dependencies: {}
+      };
+      processDependencies(path.join(filePath, "node_modules"), packages, dependencies[packageObj.name].dependencies);
+      }
+      }
 
-        files.forEach(function(entry) {
-        var filePath = path.join(dir, entry);
-        var stats = fs.statSync(filePath);
+      function processDependencies(dir, packages, dependencies) {
+      if(fs.existsSync(dir)) {
+      var files = fs.readdirSync(dir);
 
-        if(stats.isDirectory()) {
-        if(entry.substr(0, 1) == "@") {
-        // When we encounter a namespace folder, augment all packages belonging to the scope
-        var pkgFiles = fs.readdirSync(filePath);
+      files.forEach(function(entry) {
+      var filePath = path.join(dir, entry);
+      var stats = fs.statSync(filePath);
 
-        pkgFiles.forEach(function(entry) {
-        if(stats.isDirectory()) {
-        var pkgFilePath = path.join(filePath, entry);
-        augmentPackageJSON(pkgFilePath, packages, dependencies);
-        }
-        });
-        } else {
-        augmentPackageJSON(filePath, packages, dependencies);
-        }
-        }
-        });
-        }
-        }
+      if(stats.isDirectory()) {
+      if(entry.substr(0, 1) == "@") {
+      // When we encounter a namespace folder, augment all packages belonging to the scope
+      var pkgFiles = fs.readdirSync(filePath);
 
-        processDependencies("node_modules", lockObj.packages, lockObj.dependencies);
+      pkgFiles.forEach(function(entry) {
+      if(stats.isDirectory()) {
+      var pkgFilePath = path.join(filePath, entry);
+      augmentPackageJSON(pkgFilePath, packages, dependencies);
+      }
+      });
+      } else {
+      augmentPackageJSON(filePath, packages, dependencies);
+      }
+      }
+      });
+      }
+      }
 
-        fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2));
-      '';
-    };
+      processDependencies("node_modules", lockObj.packages, lockObj.dependencies);
 
-    # Script that links bins defined in package.json to the node_modules bin directory
-    # NPM does not do this for top-level packages itself anymore as of v7
-    linkBinsScript = writeTextFile {
-      name = "linkbins.js";
-      text = ''
-        var fs = require('fs');
-        var path = require('path');
+      fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2));
+    '';
+  };
 
-        var packageObj = JSON.parse(fs.readFileSync("package.json"));
+  # Script that links bins defined in package.json to the node_modules bin directory
+  # NPM does not do this for top-level packages itself anymore as of v7
+  linkBinsScript = writeTextFile {
+    name = "linkbins.js";
+    text = ''
+      var fs = require('fs');
+      var path = require('path');
 
-        var nodeModules = Array(packageObj.name.split("/").length).fill("..").join(path.sep);
+      var packageObj = JSON.parse(fs.readFileSync("package.json"));
 
-        if(packageObj.bin !== undefined) {
-        fs.mkdirSync(path.join(nodeModules, ".bin"))
+      var nodeModules = Array(packageObj.name.split("/").length).fill("..").join(path.sep);
 
-        if(typeof packageObj.bin == "object") {
-        Object.keys(packageObj.bin).forEach(function(exe) {
-        if(fs.existsSync(packageObj.bin[exe])) {
-        console.log("linking bin '" + exe + "'");
-        fs.symlinkSync(
-        path.join("..", packageObj.name, packageObj.bin[exe]),
-        path.join(nodeModules, ".bin", exe)
-        );
-        }
-        else {
-        console.log("skipping non-existent bin '" + exe + "'");
-        }
-        })
-        }
-        else {
-        if(fs.existsSync(packageObj.bin)) {
-        console.log("linking bin '" + packageObj.bin + "'");
-        fs.symlinkSync(
-        path.join("..", packageObj.name, packageObj.bin),
-        path.join(nodeModules, ".bin", packageObj.name.split("/").pop())
-        );
-        }
-        else {
-        console.log("skipping non-existent bin '" + packageObj.bin + "'");
-        }
-        }
-        }
-        else if(packageObj.directories !== undefined && packageObj.directories.bin !== undefined) {
-        fs.mkdirSync(path.join(nodeModules, ".bin"))
+      if(packageObj.bin !== undefined) {
+      fs.mkdirSync(path.join(nodeModules, ".bin"))
 
-        fs.readdirSync(packageObj.directories.bin).forEach(function(exe) {
-        if(fs.existsSync(path.join(packageObj.directories.bin, exe))) {
-        console.log("linking bin '" + exe + "'");
-        fs.symlinkSync(
-        path.join("..", packageObj.name, packageObj.directories.bin, exe),
-        path.join(nodeModules, ".bin", exe)
-        );
-        }
-        else {
-        console.log("skipping non-existent bin '" + exe + "'");
-        }
-        })
-        }
-      '';
-    };
+      if(typeof packageObj.bin == "object") {
+      Object.keys(packageObj.bin).forEach(function(exe) {
+      if(fs.existsSync(packageObj.bin[exe])) {
+      console.log("linking bin '" + exe + "'");
+      fs.symlinkSync(
+      path.join("..", packageObj.name, packageObj.bin[exe]),
+      path.join(nodeModules, ".bin", exe)
+      );
+      }
+      else {
+      console.log("skipping non-existent bin '" + exe + "'");
+      }
+      })
+      }
+      else {
+      if(fs.existsSync(packageObj.bin)) {
+      console.log("linking bin '" + packageObj.bin + "'");
+      fs.symlinkSync(
+      path.join("..", packageObj.name, packageObj.bin),
+      path.join(nodeModules, ".bin", packageObj.name.split("/").pop())
+      );
+      }
+      else {
+      console.log("skipping non-existent bin '" + packageObj.bin + "'");
+      }
+      }
+      }
+      else if(packageObj.directories !== undefined && packageObj.directories.bin !== undefined) {
+      fs.mkdirSync(path.join(nodeModules, ".bin"))
 
-    prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}:
-    let
-      forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com";
-    in
-    ''
-      # Pinpoint the versions of all dependencies to the ones that are actually being used
-      echo "pinpointing versions of dependencies..."
-      source $pinpointDependenciesScriptPath
+      fs.readdirSync(packageObj.directories.bin).forEach(function(exe) {
+      if(fs.existsSync(path.join(packageObj.directories.bin, exe))) {
+      console.log("linking bin '" + exe + "'");
+      fs.symlinkSync(
+      path.join("..", packageObj.name, packageObj.directories.bin, exe),
+      path.join(nodeModules, ".bin", exe)
+      );
+      }
+      else {
+      console.log("skipping non-existent bin '" + exe + "'");
+      }
+      })
+      }
+    '';
+  };
 
-      # Patch the shebangs of the bundled modules to prevent them from
-      # calling executables outside the Nix store as much as possible
-      patchShebangs .
+  prepareAndInvokeNPM = {
+    packageName,
+    bypassCache,
+    reconstructLock,
+    npmFlags,
+    production,
+  }: let
+    forceOfflineFlag =
+      if bypassCache
+      then "--offline"
+      else "--registry http://www.example.com";
+  in ''
+    # Pinpoint the versions of all dependencies to the ones that are actually being used
+    echo "pinpointing versions of dependencies..."
+    source $pinpointDependenciesScriptPath
 
-      # Deploy the Node.js package by running npm install. Since the
-      # dependencies have been provided already by ourselves, it should not
-      # attempt to install them again, which is good, because we want to make
-      # it Nix's responsibility. If it needs to install any dependencies
-      # anyway (e.g. because the dependency parameters are
-      # incomplete/incorrect), it fails.
-      #
-      # The other responsibilities of NPM are kept -- version checks, build
-      # steps, postprocessing etc.
+    # Patch the shebangs of the bundled modules to prevent them from
+    # calling executables outside the Nix store as much as possible
+    patchShebangs .
 
-      export HOME=$TMPDIR
-      cd "${packageName}"
-      runHook preRebuild
+    # Deploy the Node.js package by running npm install. Since the
+    # dependencies have been provided already by ourselves, it should not
+    # attempt to install them again, which is good, because we want to make
+    # it Nix's responsibility. If it needs to install any dependencies
+    # anyway (e.g. because the dependency parameters are
+    # incomplete/incorrect), it fails.
+    #
+    # The other responsibilities of NPM are kept -- version checks, build
+    # steps, postprocessing etc.
 
-      ${lib.optionalString bypassCache ''
-        ${lib.optionalString reconstructLock ''
-          if [ -f package-lock.json ]
-          then
-          echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!"
-          echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!"
-          rm package-lock.json
-          else
-          echo "No package-lock.json file found, reconstructing..."
-          fi
+    export HOME=$TMPDIR
+    cd "${packageName}"
+    runHook preRebuild
 
-          node ${reconstructPackageLock}
-        ''}
+    ${lib.optionalString bypassCache ''
+      ${lib.optionalString reconstructLock ''
+        if [ -f package-lock.json ]
+        then
+        echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!"
+        echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!"
+        rm package-lock.json
+        else
+        echo "No package-lock.json file found, reconstructing..."
+        fi
 
-        node ${addIntegrityFieldsScript}
+        node ${reconstructPackageLock}
       ''}
 
-      npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild
+      node ${addIntegrityFieldsScript}
+    ''}
 
-      runHook postRebuild
+    npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild
 
-      if [ "''${dontNpmInstall-}" != "1" ]
-      then
-      # NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
-      rm -f npm-shrinkwrap.json
+    runHook postRebuild
 
-      npm ${forceOfflineFlag} --nodedir=${nodeSources} --no-bin-links --ignore-scripts ${npmFlags} ${lib.optionalString production "--production"} install
-      fi
+    if [ "''${dontNpmInstall-}" != "1" ]
+    then
+    # NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
+    rm -f npm-shrinkwrap.json
 
-      # Link executables defined in package.json
-      node ${linkBinsScript}
-    '';
+    npm ${forceOfflineFlag} --nodedir=${nodeSources} --no-bin-links --ignore-scripts ${npmFlags} ${lib.optionalString production "--production"} install
+    fi
 
-    # Builds and composes an NPM package including all its dependencies
-    buildNodePackage =
-      { name
-      , packageName
-      , version ? null
-      , dependencies ? []
-      , buildInputs ? []
-      , production ? true
-      , npmFlags ? ""
-      , dontNpmInstall ? false
-      , bypassCache ? false
-      , reconstructLock ? false
-      , preRebuild ? ""
-      , dontStrip ? true
-      , unpackPhase ? "true"
-      , buildPhase ? "true"
-      , meta ? {}
-      , ... }@args:
+    # Link executables defined in package.json
+    node ${linkBinsScript}
+  '';
 
-      let
-        extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ];
-      in
-      stdenv.mkDerivation ({
-        name = "${name}${if version == null then "" else "-${version}"}";
-        buildInputs = [ tarWrapper python nodejs ]
-        ++ lib.optional (stdenv.isLinux) utillinux
-        ++ lib.optional (stdenv.isDarwin) libtool
-        ++ buildInputs;
+  # Builds and composes an NPM package including all its dependencies
+  buildNodePackage = {
+    name,
+    packageName,
+    version ? null,
+    dependencies ? [],
+    buildInputs ? [],
+    production ? true,
+    npmFlags ? "",
+    dontNpmInstall ? false,
+    bypassCache ? false,
+    reconstructLock ? false,
+    preRebuild ? "",
+    dontStrip ? true,
+    unpackPhase ? "true",
+    buildPhase ? "true",
+    meta ? {},
+    ...
+  } @ args: let
+    extraArgs = removeAttrs args ["name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta"];
+  in
+    stdenv.mkDerivation ({
+        name = "${name}${
+          if version == null
+          then ""
+          else "-${version}"
+        }";
+        buildInputs =
+          [tarWrapper python nodejs]
+          ++ lib.optional (stdenv.isLinux) utillinux
+          ++ lib.optional (stdenv.isDarwin) libtool
+          ++ buildInputs;
 
         inherit nodejs;
 
@@ -511,7 +554,7 @@         compositionScript = composePackage args;
         pinpointDependenciesScript = pinpointDependenciesOfPackage args;
 
-        passAsFile = [ "compositionScript" "pinpointDependenciesScript" ];
+        passAsFile = ["compositionScript" "pinpointDependenciesScript"];
 
         installPhase = ''
           source ${installPackage}
@@ -523,7 +566,7 @@           # Compose the package and all its dependencies
           source $compositionScriptPath
 
-          ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
+          ${prepareAndInvokeNPM {inherit packageName bypassCache reconstructLock npmFlags production;}}
 
           # Create symlink to the deployed executable folder, if applicable
           if [ -d "$out/lib/node_modules/.bin" ]
@@ -557,128 +600,139 @@ # Run post install hook, if provided           runHook postInstall
         '';
 
-        meta = {
-          # default to Node.js' platforms
-          platforms = nodejs.meta.platforms;
-        } // meta;
-      } // extraArgs);
+        meta =
+          {
+            # default to Node.js' platforms
+            platforms = nodejs.meta.platforms;
+          }
+          // meta;
+      }
+      // extraArgs);
 
-      # Builds a node environment (a node_modules folder and a set of binaries)
-      buildNodeDependencies =
-        { name
-        , packageName
-        , version ? null
-        , src
-        , dependencies ? []
-        , buildInputs ? []
-        , production ? true
-        , npmFlags ? ""
-        , dontNpmInstall ? false
-        , bypassCache ? false
-        , reconstructLock ? false
-        , dontStrip ? true
-        , unpackPhase ? "true"
-        , buildPhase ? "true"
-        , ... }@args:
-
-        let
-          extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ];
-        in
-        stdenv.mkDerivation ({
-          name = "node-dependencies-${name}${if version == null then "" else "-${version}"}";
+  # Builds a node environment (a node_modules folder and a set of binaries)
+  buildNodeDependencies = {
+    name,
+    packageName,
+    version ? null,
+    src,
+    dependencies ? [],
+    buildInputs ? [],
+    production ? true,
+    npmFlags ? "",
+    dontNpmInstall ? false,
+    bypassCache ? false,
+    reconstructLock ? false,
+    dontStrip ? true,
+    unpackPhase ? "true",
+    buildPhase ? "true",
+    ...
+  } @ args: let
+    extraArgs = removeAttrs args ["name" "dependencies" "buildInputs"];
+  in
+    stdenv.mkDerivation ({
+        name = "node-dependencies-${name}${
+          if version == null
+          then ""
+          else "-${version}"
+        }";
 
-          buildInputs = [ tarWrapper python nodejs ]
+        buildInputs =
+          [tarWrapper python nodejs]
           ++ lib.optional (stdenv.isLinux) utillinux
           ++ lib.optional (stdenv.isDarwin) libtool
           ++ buildInputs;
 
-          inherit dontStrip; # Stripping may fail a build for some package deployments
-          inherit dontNpmInstall unpackPhase buildPhase;
+        inherit dontStrip; # Stripping may fail a build for some package deployments
+        inherit dontNpmInstall unpackPhase buildPhase;
 
-          includeScript = includeDependencies { inherit dependencies; };
-          pinpointDependenciesScript = pinpointDependenciesOfPackage args;
+        includeScript = includeDependencies {inherit dependencies;};
+        pinpointDependenciesScript = pinpointDependenciesOfPackage args;
 
-          passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
+        passAsFile = ["includeScript" "pinpointDependenciesScript"];
 
-          installPhase = ''
-            source ${installPackage}
+        installPhase = ''
+          source ${installPackage}
 
-            mkdir -p $out/${packageName}
-            cd $out/${packageName}
+          mkdir -p $out/${packageName}
+          cd $out/${packageName}
 
-            source $includeScriptPath
+          source $includeScriptPath
 
-            # Create fake package.json to make the npm commands work properly
-            cp ${src}/package.json .
-            chmod 644 package.json
-            ${lib.optionalString bypassCache ''
-              if [ -f ${src}/package-lock.json ]
-              then
-              cp ${src}/package-lock.json .
-              chmod 644 package-lock.json
-              fi
-            ''}
-
-            # Go to the parent folder to make sure that all packages are pinpointed
-            cd ..
-            ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
+          # Create fake package.json to make the npm commands work properly
+          cp ${src}/package.json .
+          chmod 644 package.json
+          ${lib.optionalString bypassCache ''
+            if [ -f ${src}/package-lock.json ]
+            then
+            cp ${src}/package-lock.json .
+            chmod 644 package-lock.json
+            fi
+          ''}
 
-            ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
+          # Go to the parent folder to make sure that all packages are pinpointed
+          cd ..
+          ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
 
-            # Expose the executables that were installed
-            cd ..
-            ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
+          ${prepareAndInvokeNPM {inherit packageName bypassCache reconstructLock npmFlags production;}}
 
-            mv ${packageName} lib
-            ln -s $out/lib/node_modules/.bin $out/bin
-          '';
-        } // extraArgs);
+          # Expose the executables that were installed
+          cd ..
+          ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
 
-        # Builds a development shell
-        buildNodeShell =
-          { name
-          , packageName
-          , version ? null
-          , src
-          , dependencies ? []
-          , buildInputs ? []
-          , production ? true
-          , npmFlags ? ""
-          , dontNpmInstall ? false
-          , bypassCache ? false
-          , reconstructLock ? false
-          , dontStrip ? true
-          , unpackPhase ? "true"
-          , buildPhase ? "true"
-          , ... }@args:
+          mv ${packageName} lib
+          ln -s $out/lib/node_modules/.bin $out/bin
+        '';
+      }
+      // extraArgs);
 
-          let
-            nodeDependencies = buildNodeDependencies args;
-            extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "unpackPhase" "buildPhase" ];
-          in
-          stdenv.mkDerivation ({
-            name = "node-shell-${name}${if version == null then "" else "-${version}"}";
+  # Builds a development shell
+  buildNodeShell = {
+    name,
+    packageName,
+    version ? null,
+    src,
+    dependencies ? [],
+    buildInputs ? [],
+    production ? true,
+    npmFlags ? "",
+    dontNpmInstall ? false,
+    bypassCache ? false,
+    reconstructLock ? false,
+    dontStrip ? true,
+    unpackPhase ? "true",
+    buildPhase ? "true",
+    ...
+  } @ args: let
+    nodeDependencies = buildNodeDependencies args;
+    extraArgs = removeAttrs args ["name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "unpackPhase" "buildPhase"];
+  in
+    stdenv.mkDerivation ({
+        name = "node-shell-${name}${
+          if version == null
+          then ""
+          else "-${version}"
+        }";
 
-            buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs;
-            buildCommand = ''
-              mkdir -p $out/bin
-              cat > $out/bin/shell <<EOF
-              #! ${stdenv.shell} -e
-              $shellHook
-              exec ${stdenv.shell}
-              EOF
-              chmod +x $out/bin/shell
-            '';
+        buildInputs = [python nodejs] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs;
+        buildCommand = ''
+          mkdir -p $out/bin
+          cat > $out/bin/shell <<EOF
+          #! ${stdenv.shell} -e
+          $shellHook
+          exec ${stdenv.shell}
+          EOF
+          chmod +x $out/bin/shell
+        '';
 
-            # Provide the dependencies in a development shell through the NODE_PATH environment variable
-            inherit nodeDependencies;
-            shellHook = lib.optionalString (dependencies != []) ''
-              export NODE_PATH=${nodeDependencies}/lib/node_modules
-              export PATH="${nodeDependencies}/bin:$PATH"
-            '';
-          } // extraArgs);
-in
-{
+        # Provide the dependencies in a development shell through the NODE_PATH environment variable
+        inherit nodeDependencies;
+        shellHook = lib.optionalString (dependencies != []) ''
+          export NODE_PATH=${nodeDependencies}/lib/node_modules
+          export PATH="${nodeDependencies}/bin:$PATH"
+        '';
+      }
+      // extraArgs);
+in {
   buildNodeSourceDist = lib.makeOverridable buildNodeSourceDist;
   buildNodePackage = lib.makeOverridable buildNodePackage;
   buildNodeDependencies = lib.makeOverridable buildNodeDependencies;
M user/packages/node2nix/node-packages.nixuser/packages/node2nix/node-packages.nix
@@ -1,8 +1,13 @@ # This file has been generated by node2nix 1.11.1. Do not edit!
-
-{nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}:
-
-let
+{
+  nodeEnv,
+  fetchurl,
+  fetchgit,
+  nix-gitignore,
+  stdenv,
+  lib,
+  globalBuildInputs ? [],
+}: let
   sources = {
     "abort-controller-3.0.0" = {
       name = "abort-controller";
@@ -1058,8 +1063,7 @@ sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==";       };
     };
   };
-in
-{
+in {
   "pnpm-7.12" = nodeEnv.buildNodePackage {
     name = "pnpm";
     packageName = "pnpm";
@@ -1102,11 +1106,12 @@ sources."fast-copy-2.1.7"       sources."fast-safe-stringify-2.1.1"
       sources."fs.realpath-1.0.0"
       sources."glob-8.0.3"
-      (sources."help-me-4.1.0" // {
-        dependencies = [
-          sources."readable-stream-3.6.0"
-        ];
-      })
+      (sources."help-me-4.1.0"
+        // {
+          dependencies = [
+            sources."readable-stream-3.6.0"
+          ];
+        })
       sources."ieee754-1.2.1"
       sources."inflight-1.0.6"
       sources."inherits-2.0.4"
@@ -1183,16 +1188,18 @@ url = "https://registry.npmjs.org/shadow-cljs/-/shadow-cljs-2.20.2.tgz";       sha512 = "2kzWnV1QM6KBetziCAkCf8BJdnDX2CwiAr4yhvOsiQpaNJcMzwMsJTX/gTHz58yQg0dV5uwPsIyBlvyIfl30rg==";
     };
     dependencies = [
-      (sources."asn1.js-5.4.1" // {
-        dependencies = [
-          sources."bn.js-4.12.0"
-        ];
-      })
-      (sources."assert-1.5.0" // {
-        dependencies = [
-          sources."util-0.10.3"
-        ];
-      })
+      (sources."asn1.js-5.4.1"
+        // {
+          dependencies = [
+            sources."bn.js-4.12.0"
+          ];
+        })
+      (sources."assert-1.5.0"
+        // {
+          dependencies = [
+            sources."util-0.10.3"
+          ];
+        })
       sources."base64-js-1.5.1"
       sources."bn.js-5.2.1"
       sources."brorand-1.1.0"
@@ -1200,12 +1207,13 @@ sources."browserify-aes-1.2.0"       sources."browserify-cipher-1.0.1"
       sources."browserify-des-1.0.2"
       sources."browserify-rsa-4.1.0"
-      (sources."browserify-sign-4.2.1" // {
-        dependencies = [
-          sources."inherits-2.0.4"
-          sources."readable-stream-3.6.0"
-        ];
-      })
+      (sources."browserify-sign-4.2.1"
+        // {
+          dependencies = [
+            sources."inherits-2.0.4"
+            sources."readable-stream-3.6.0"
+          ];
+        })
       sources."browserify-zlib-0.2.0"
       sources."buffer-4.9.2"
       sources."buffer-xor-1.0.3"
@@ -1215,40 +1223,45 @@ sources."cipher-base-1.0.4"       sources."console-browserify-1.2.0"
       sources."constants-browserify-1.0.0"
       sources."core-util-is-1.0.3"
-      (sources."create-ecdh-4.0.4" // {
-        dependencies = [
-          sources."bn.js-4.12.0"
-        ];
-      })
+      (sources."create-ecdh-4.0.4"
+        // {
+          dependencies = [
+            sources."bn.js-4.12.0"
+          ];
+        })
       sources."create-hash-1.2.0"
       sources."create-hmac-1.1.7"
       sources."crypto-browserify-3.12.0"
       sources."des.js-1.0.1"
-      (sources."diffie-hellman-5.0.3" // {
-        dependencies = [
-          sources."bn.js-4.12.0"
-        ];
-      })
+      (sources."diffie-hellman-5.0.3"
+        // {
+          dependencies = [
+            sources."bn.js-4.12.0"
+          ];
+        })
       sources."domain-browser-1.2.0"
-      (sources."elliptic-6.5.4" // {
-        dependencies = [
-          sources."bn.js-4.12.0"
-          sources."inherits-2.0.4"
-        ];
-      })
+      (sources."elliptic-6.5.4"
+        // {
+          dependencies = [
+            sources."bn.js-4.12.0"
+            sources."inherits-2.0.4"
+          ];
+        })
       sources."events-3.3.0"
       sources."evp_bytestokey-1.0.3"
-      (sources."hash-base-3.1.0" // {
-        dependencies = [
-          sources."inherits-2.0.4"
-          sources."readable-stream-3.6.0"
-        ];
-      })
-      (sources."hash.js-1.1.7" // {
-        dependencies = [
-          sources."inherits-2.0.4"
-        ];
-      })
+      (sources."hash-base-3.1.0"
+        // {
+          dependencies = [
+            sources."inherits-2.0.4"
+            sources."readable-stream-3.6.0"
+          ];
+        })
+      (sources."hash.js-1.1.7"
+        // {
+          dependencies = [
+            sources."inherits-2.0.4"
+          ];
+        })
       sources."hmac-drbg-1.0.1"
       sources."https-browserify-1.0.0"
       sources."ieee754-1.2.1"
@@ -1256,11 +1269,12 @@ sources."inherits-2.0.1"       sources."isarray-1.0.0"
       sources."isexe-2.0.0"
       sources."md5.js-1.3.5"
-      (sources."miller-rabin-4.0.1" // {
-        dependencies = [
-          sources."bn.js-4.12.0"
-        ];
-      })
+      (sources."miller-rabin-4.0.1"
+        // {
+          dependencies = [
+            sources."bn.js-4.12.0"
+          ];
+        })
       sources."minimalistic-assert-1.0.1"
       sources."minimalistic-crypto-utils-1.0.1"
       sources."node-gyp-build-4.5.0"
@@ -1273,23 +1287,25 @@ sources."path-browserify-0.0.1"       sources."pbkdf2-3.1.2"
       sources."process-0.11.10"
       sources."process-nextick-args-2.0.1"
-      (sources."public-encrypt-4.0.3" // {
-        dependencies = [
-          sources."bn.js-4.12.0"
-        ];
-      })
+      (sources."public-encrypt-4.0.3"
+        // {
+          dependencies = [
+            sources."bn.js-4.12.0"
+          ];
+        })
       sources."punycode-1.4.1"
       sources."querystring-0.2.0"
       sources."querystring-es3-0.2.1"
       sources."randombytes-2.1.0"
       sources."randomfill-1.0.4"
-      (sources."readable-stream-2.3.7" // {
-        dependencies = [
-          sources."inherits-2.0.4"
-          sources."safe-buffer-5.1.2"
-          sources."string_decoder-1.1.1"
-        ];
-      })
+      (sources."readable-stream-2.3.7"
+        // {
+          dependencies = [
+            sources."inherits-2.0.4"
+            sources."safe-buffer-5.1.2"
+            sources."string_decoder-1.1.1"
+          ];
+        })
       sources."readline-sync-1.4.10"
       sources."ripemd160-2.0.2"
       sources."safe-buffer-5.2.1"
@@ -1305,17 +1321,19 @@ sources."string_decoder-1.3.0"       sources."timers-browserify-2.0.12"
       sources."to-arraybuffer-1.0.1"
       sources."tty-browserify-0.0.0"
-      (sources."url-0.11.0" // {
-        dependencies = [
-          sources."punycode-1.3.2"
-        ];
-      })
+      (sources."url-0.11.0"
+        // {
+          dependencies = [
+            sources."punycode-1.3.2"
+          ];
+        })
       sources."utf-8-validate-5.0.9"
-      (sources."util-0.11.1" // {
-        dependencies = [
-          sources."inherits-2.0.3"
-        ];
-      })
+      (sources."util-0.11.1"
+        // {
+          dependencies = [
+            sources."inherits-2.0.3"
+          ];
+        })
       sources."util-deprecate-1.0.2"
       sources."vm-browserify-1.1.2"
       sources."which-1.3.1"
M user/prefect.nixuser/prefect.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   imports = [
     ./settings/base.nix
     ./settings/dunst.nix
M user/satoshipad.nixuser/satoshipad.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   imports = [
     ../private
 
@@ -35,9 +37,9 @@   xsession.windowManager.i3 = {
     config = {
       startup = [
-        { command = "firefox-devedition"; }
-        { command = "ripcord"; }
-        { command = "emacs"; }
+        {command = "firefox-devedition";}
+        {command = "ripcord";}
+        {command = "emacs";}
       ];
     };
     extraConfig = ''
M user/server.nixuser/server.nix
@@ -1,8 +1,10 @@-{ config, lib, pkgs, ... }:
-
-with lib;
-
 {
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+with lib; {
   imports = [
     ./settings/base.nix
     ./settings/git.nix
M user/settings/accounting.nixuser/settings/accounting.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     ledger
     hledger
M user/settings/base.nixuser/settings/base.nix
@@ -1,6 +1,9 @@-{ config, lib, pkgs, ... }:
-
 {
+  config,
+  lib,
+  pkgs,
+  ...
+}: {
   imports = [
     ../modules/nvim-coc.nix
   ];
@@ -37,7 +40,10 @@ };   };
   home.sessionVariables = {
     EMAIL = "alan@alanpearce.eu";
-    XDG_CACHE_HOME = if pkgs.stdenv.isDarwin then "$HOME/Library/Caches/XDG" else "$HOME/.cache";
+    XDG_CACHE_HOME =
+      if pkgs.stdenv.isDarwin
+      then "$HOME/Library/Caches/XDG"
+      else "$HOME/.cache";
     XDG_CONFIG_HOME = "$HOME/.config";
     XDG_DATA_HOME = "$HOME/.local/share";
   };
@@ -55,33 +61,31 @@ hide_userland_threads = 1;     };
   };
   home.packages = with pkgs;
-  [
-    pv
-    fd
-    sd
-    entr
-    ripgrep
-    iftop
-    nmap
-    moreutils
-    mtr
-    tree
-    abduco
-    dvtm
-    vimv
-  ] ++
-  (
-    if !stdenv.isDarwin
-    then
     [
-      file
-      ldns
-      lsof
-      unar
-      zip
-    ]
-    else
-    [
+      pv
+      fd
+      sd
+      entr
+      ripgrep
+      iftop
+      nmap
+      moreutils
+      mtr
+      tree
+      abduco
+      dvtm
+      vimv
     ]
-  );
+    ++ (
+      if !stdenv.isDarwin
+      then [
+        file
+        ldns
+        lsof
+        unar
+        zip
+      ]
+      else [
+      ]
+    );
 }
M user/settings/chat.nixuser/settings/chat.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     signal-desktop
     wire-desktop
M user/settings/darwin.nixuser/settings/darwin.nix
@@ -1,39 +1,42 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   nixpkgs.overlays = [
     (self: super: {
-      darwin-zsh-completions = super.runCommand "darwin-zsh-completions-0.0.0" {
-        preferLocalBuild = true;
-      } ''
-        mkdir -p $out/share/zsh/site-functions
-        cat <<-'EOF' > $out/share/zsh/site-functions/_darwin-rebuild
-        #compdef darwin-rebuild
-        #autoload
-        _nix-common-options
-        local -a _1st_arguments
-        _1st_arguments=(
-        'switch:Build, activate, and update the current generation'\
-        'build:Build without activating or updating the current generation'\
-        'check:Build and run the activation sanity checks'\
-        'changelog:Show most recent entries in the changelog'\
-        )
-        _arguments \
-        '--list-generations[Print a list of all generations in the active profile]'\
-        '--rollback[Roll back to the previous configuration]'\
-        {--switch-generation,-G}'[Activate specified generation]'\
-        '(--profile-name -p)'{--profile-name,-p}'[Profile to use to track current and previous system configurations]:Profile:_nix_profiles'\
-        '1:: :->subcmds' && return 0
-        case $state in
-        subcmds)
-        _describe -t commands 'darwin-rebuild subcommands' _1st_arguments
-        ;;
-        esac
-        EOF
-      '';
+      darwin-zsh-completions =
+        super.runCommand "darwin-zsh-completions-0.0.0" {
+          preferLocalBuild = true;
+        } ''
+          mkdir -p $out/share/zsh/site-functions
+          cat <<-'EOF' > $out/share/zsh/site-functions/_darwin-rebuild
+          #compdef darwin-rebuild
+          #autoload
+          _nix-common-options
+          local -a _1st_arguments
+          _1st_arguments=(
+          'switch:Build, activate, and update the current generation'\
+          'build:Build without activating or updating the current generation'\
+          'check:Build and run the activation sanity checks'\
+          'changelog:Show most recent entries in the changelog'\
+          )
+          _arguments \
+          '--list-generations[Print a list of all generations in the active profile]'\
+          '--rollback[Roll back to the previous configuration]'\
+          {--switch-generation,-G}'[Activate specified generation]'\
+          '(--profile-name -p)'{--profile-name,-p}'[Profile to use to track current and previous system configurations]:Profile:_nix_profiles'\
+          '1:: :->subcmds' && return 0
+          case $state in
+          subcmds)
+          _describe -t commands 'darwin-rebuild subcommands' _1st_arguments
+          ;;
+          esac
+          EOF
+        '';
     })
   ];
-  home.packages = with pkgs; [ aspell aspellDicts.en darwin-zsh-completions ];
+  home.packages = with pkgs; [aspell aspellDicts.en darwin-zsh-completions];
 
   programs.emacs.package = pkgs.emacsMacport;
 
M user/settings/development/base.nixuser/settings/development/base.nix
@@ -1,31 +1,38 @@-{ config, lib, pkgs, ... }:
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}: {
+  home.packages = with pkgs;
+    [
+      shellcheck
+      shfmt
+      editorconfig-core-c
+      python3Packages.yamllint
+      nodePackages.dockerfile-language-server-nodejs
+      nodePackages.yaml-language-server
 
-{ home.packages = with pkgs; [
-    shellcheck
-    shfmt
-    editorconfig-core-c
-    python3Packages.yamllint
-    nodePackages.dockerfile-language-server-nodejs
-    nodePackages.yaml-language-server
+      mosh
 
-    mosh
+      nix-prefetch-scripts
+      alejandra # nix formatter
 
-    nix-prefetch-scripts
-    alejandra # nix formatter
-
-    httpie
-    jq
-  ] ++ (
-    if !stdenv.isDarwin
-    then [
-      httping
-      (lib.lowPrio firefox-devedition-bin)
-    ] else [
+      httpie
+      jq
     ]
-  );
+    ++ (
+      if !stdenv.isDarwin
+      then [
+        httping
+        (lib.lowPrio firefox-devedition-bin)
+      ]
+      else [
+      ]
+    );
   nixpkgs.overlays = [
     (self: super: {
-      ripgrep = super.ripgrep.override { withPCRE2 = true; };
+      ripgrep = super.ripgrep.override {withPCRE2 = true;};
     })
   ];
 }
M user/settings/development/clojure.nixuser/settings/development/clojure.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     clojure
     node2nixPackages.node-cljfmt
M user/settings/development/javascript.nixuser/settings/development/javascript.nix
@@ -1,9 +1,10 @@-{ config, pkgs, ... }:
-
-let
-  nodejs = pkgs.nodejs-18_x;
-in
 {
+  config,
+  pkgs,
+  ...
+}: let
+  nodejs = pkgs.nodejs-18_x;
+in {
   nixpkgs.overlays = [
     (self: super: {
       node2nixPackages = super.callPackage ../../packages/node2nix {
@@ -11,37 +12,40 @@ inherit nodejs;       };
     })
   ];
-  home.packages = (with pkgs; [
-    nodejs
-  ] ++ (
-    if stdenv.isDarwin
-    then
-    [
-    ]
-    else
-    [
-      # npm install may use any of these
-      binutils
-      gnumake
-      gcc
-      python2
-    ]
-  )) ++ (with pkgs.nodePackages; [
-    node2nix
-    nodemon
-    javascript-typescript-langserver
-    typescript-language-server
-    eslint_d
-    typescript
+  home.packages =
+    (with pkgs;
+      [
+        nodejs
+      ]
+      ++ (
+        if stdenv.isDarwin
+        then [
+        ]
+        else [
+          # npm install may use any of these
+          binutils
+          gnumake
+          gcc
+          python2
+        ]
+      ))
+    ++ (with pkgs.nodePackages; [
+      node2nix
+      nodemon
+      javascript-typescript-langserver
+      typescript-language-server
+      eslint_d
+      typescript
 
-    node-gyp
-    node-gyp-build
-    node-pre-gyp
-  ]) ++ (with pkgs.node2nixPackages; [
-    pkgs.node2nixPackages."pnpm-7.12"
+      node-gyp
+      node-gyp-build
+      node-pre-gyp
+    ])
+    ++ (with pkgs.node2nixPackages; [
+      pkgs.node2nixPackages."pnpm-7.12"
 
-    pino-pretty
-  ]);
+      pino-pretty
+    ]);
 
   home.sessionVariables = {
     NO_UPDATE_NOTIFIER = "1"; # stop npm update-notifier
M user/settings/development/lisp.nixuser/settings/development/lisp.nix
@@ -1,6 +1,9 @@-{ config, pkgs, ... }:
-
-{ home.packages = with pkgs; [
+{
+  config,
+  pkgs,
+  ...
+}: {
+  home.packages = with pkgs; [
     ccl
     sbcl
     lispPackages.quicklisp
M user/settings/development/rust.nixuser/settings/development/rust.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     cargo
     cargo-edit
M user/settings/development/web.nixuser/settings/development/web.nix
@@ -1,10 +1,15 @@-{ config, pkgs, ... }:
 {
-  home.packages = with pkgs.nodePackages; [
-    vscode-css-languageserver-bin
-    vscode-html-languageserver-bin
-    csslint
-  ] ++ [
-    pkgs.nodePackages.stylelint
-  ];
+  config,
+  pkgs,
+  ...
+}: {
+  home.packages = with pkgs.nodePackages;
+    [
+      vscode-css-languageserver-bin
+      vscode-html-languageserver-bin
+      csslint
+    ]
+    ++ [
+      pkgs.nodePackages.stylelint
+    ];
 }
M user/settings/dunst.nixuser/settings/dunst.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   services.dunst = {
     enable = true;
     settings = {
M user/settings/emacs.nixuser/settings/emacs.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
-let
+{
+  config,
+  pkgs,
+  lib,
+  ...
+}: let
   inherit (pkgs) stdenv;
 
   editorScript = pkgs.writeScriptBin "edit" ''
@@ -29,15 +32,14 @@ StartupWMClass=Emacs       Keywords=Text;Editor;
     '';
   };
-in
-{
+in {
   imports = [
     ../modules/eshell.nix
   ];
 
   programs.emacs = {
     enable = true;
-    package = lib.mkDefault (pkgs.emacsNativeComp.override { withGTK3 = true; });
+    package = lib.mkDefault (pkgs.emacsNativeComp.override {withGTK3 = true;});
     eshell = {
       aliases = {
         pk = "eshell-up-pk $1";
@@ -66,120 +68,123 @@         cdg = "cd (projectile-project-root)";
       };
     };
-    extraPackages = epkgs: (with epkgs; [
-      ace-link
-      all-the-icons
-      almost-mono-themes
-      add-node-modules-path
-      ag
-      all-the-icons
-      amx
-      auto-async-byte-compile
-      avy
-      bash-completion
-      caddyfile-mode
-      cider
-      clojure-mode
-      company
-      company-web
-      company-tabnine
-      consult
-      consult-eglot
-      counsel
-      counsel-projectile
-      crux
-      docker-compose-mode
-      dockerfile-mode
-      dired-git-info
-      editorconfig
-      eglot
-      eldoc-box
-      emmet-mode
-      esh-autosuggest
-      esh-buf-stack
-      esh-help
-      eshell-fringe-status
-      eshell-toggle
-      eshell-up
-      evil
-      evil-anzu
-      evil-collection
-      evil-commentary
-      evil-embrace
-      evil-ledger
-      evil-matchit
-      evil-mu4e
-      evil-numbers
-      evil-org
-      evil-quickscope
-      evil-space
-      evil-surround
-      eyebrowse
-      feature-mode
-      format-all
-      flycheck
-      flyspell-correct
-      general
-      git-gutter-fringe
-      git-messenger
-      git-modes
-      git-timemachine
-      gitlab-ci-mode
-      gitlab-ci-mode-flycheck
-      go-mode
-      goto-chg
-      haskell-mode
-      helpful
-      ivy-hydra
-      janet-mode
-      jinja2-mode
-      js2-mode
-      json-mode
-      k8s-mode
-      kubel
-      kubel-evil
-      ledger-mode
-      magit
-      markdown-mode
-      modus-themes
-      doom-modeline
-      nginx-mode
-      nix-mode
-      nix-update
-      org-journal
-      paredit
-      php-mode
-      posframe
-      projectile
-      projectile-ripgrep
-      quickrun
-      racket-mode
-      rainbow-mode
-      rainbow-delimiters
-      restclient
-      ripgrep
-      rjsx-mode
-      rustic
-      scss-mode
-      spacemacs-theme
-      swiper
-      tide
-      toml-mode
-      tree-sitter
-      tree-sitter-langs
-      tree-sitter-indent
-      typescript-mode
-      undo-tree
-      use-package
-      web-mode
-      wgrep-ag
-      ws-butler
-      which-key
-      yaml-mode
-      yasnippet
-    ] ++ lib.optionals (!stdenv.isDarwin) [
-      pkgs.mu
-    ]);
+    extraPackages = epkgs: (with epkgs;
+      [
+        ace-link
+        all-the-icons
+        almost-mono-themes
+        add-node-modules-path
+        ag
+        all-the-icons
+        amx
+        apheleia
+        auto-async-byte-compile
+        avy
+        bash-completion
+        caddyfile-mode
+        cider
+        clojure-mode
+        company
+        company-web
+        company-tabnine
+        consult
+        consult-eglot
+        counsel
+        counsel-projectile
+        crux
+        docker-compose-mode
+        dockerfile-mode
+        dired-git-info
+        editorconfig
+        eglot
+        eldoc-box
+        emmet-mode
+        esh-autosuggest
+        esh-buf-stack
+        esh-help
+        eshell-fringe-status
+        eshell-toggle
+        eshell-up
+        evil
+        evil-anzu
+        evil-collection
+        evil-commentary
+        evil-embrace
+        evil-ledger
+        evil-matchit
+        evil-mu4e
+        evil-numbers
+        evil-org
+        evil-quickscope
+        evil-space
+        evil-surround
+        eyebrowse
+        feature-mode
+        format-all
+        flycheck
+        flyspell-correct
+        general
+        git-gutter-fringe
+        git-messenger
+        git-modes
+        git-timemachine
+        gitlab-ci-mode
+        gitlab-ci-mode-flycheck
+        go-mode
+        goto-chg
+        haskell-mode
+        helpful
+        ivy-hydra
+        janet-mode
+        jinja2-mode
+        js2-mode
+        json-mode
+        k8s-mode
+        kubel
+        kubel-evil
+        ledger-mode
+        magit
+        markdown-mode
+        modus-themes
+        doom-modeline
+        nginx-mode
+        nix-mode
+        nix-update
+        org-journal
+        paredit
+        php-mode
+        posframe
+        projectile
+        projectile-ripgrep
+        quickrun
+        racket-mode
+        rainbow-mode
+        rainbow-delimiters
+        restclient
+        ripgrep
+        rjsx-mode
+        rustic
+        scss-mode
+        spacemacs-theme
+        swiper
+        tide
+        toml-mode
+        tree-sitter
+        tree-sitter-langs
+        tree-sitter-indent
+        typescript-mode
+        undo-tree
+        use-package
+        web-mode
+        wgrep-ag
+        ws-butler
+        which-key
+        yaml-mode
+        yasnippet
+      ]
+      ++ lib.optionals (!stdenv.isDarwin) [
+        pkgs.mu
+      ]);
   };
   home.packages = [
     editorScript
@@ -191,7 +196,7 @@ xdg.configFile."emacs/early-init.el" = {     source = ../emacs/early-init.el;
     onChange = ''
       ${config.programs.emacs.finalPackage}/bin/emacs -Q -batch -f batch-byte-compile .config/emacs/early-init.el
-      '';
+    '';
   };
   xdg.configFile."emacs/init.el" = {
     source = ../emacs/init.el;
M user/settings/gaming.nixuser/settings/gaming.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     steam
     wineWowPackages.stable
M user/settings/git.nixuser/settings/git.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     gitAndTools.git-extras
   ];
M user/settings/gnupg.nixuser/settings/gnupg.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.file.".gnupg" = {
     recursive = true;
     source = ../gnupg;
M user/settings/golang.nixuser/settings/golang.nix
@@ -1,10 +1,12 @@-{ config, pkgs, ... }:
-
 {
-  home.packages = (with pkgs; [
+  config,
+  pkgs,
+  ...
+}: {
+  home.packages = with pkgs; [
     go
     go-langserver
     goimports
     gotools
-  ]);
+  ];
 }
M user/settings/i3.nixuser/settings/i3.nix
@@ -1,6 +1,9 @@-{ config, pkgs, lib, ... }:
-
 {
+  config,
+  pkgs,
+  lib,
+  ...
+}: {
   xdg.configFile.i3status = {
     recursive = true;
     source = ../i3/i3status;
@@ -9,32 +12,58 @@ xsession.windowManager.i3 = let     mod = "Mod4";
     mode_system = "System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) shutdown";
     locker = "${pkgs.xautolock}/bin/xautolock -locknow";
-  in
-  {
+  in {
     enable = true;
     config = {
       modifier = mod;
       assigns = {
-        "1" = [{ class = "^Ripcord$"; }];
-        "3" = [{ class = "^Firefox Developer Edition$"; }];
-        "8" = [{ class = "^Emacs$"; }];
-        "9" = [{ class = "\.exe$"; }];
-        "10" = [{ class = "^Barrier$"; }];
+        "1" = [{class = "^Ripcord$";}];
+        "3" = [{class = "^Firefox Developer Edition$";}];
+        "8" = [{class = "^Emacs$";}];
+        "9" = [{class = "\.exe$";}];
+        "10" = [{class = "^Barrier$";}];
       };
       floating = {
         criteria = [
-          { class = "Pinentry$"; }
+          {class = "Pinentry$";}
           # https://github.com/ValveSoftware/steam-for-linux/issues/1040
-          { class = "^Steam$"; title = "^Friends$"; }
-          { class = "^Steam$"; title = "Steam - News"; }
-          { class = "^Steam$"; title = ".* - Chat"; }
-          { class = "^Steam$"; title = "^Settings$"; }
-          { class = "^Steam$"; title = ".* - event started"; }
-          { class = "^Steam$"; title = ".* CD key"; }
-          { class = "^Steam$"; title = "^Steam - Self Updater$"; }
-          { class = "^Steam$"; title = "^Screenshot Uploader$"; }
-          { class = "^Steam$"; title = "^Steam Guard - Computer Authorization Required$"; }
-          { title = "^Steam Keyboard$"; }
+          {
+            class = "^Steam$";
+            title = "^Friends$";
+          }
+          {
+            class = "^Steam$";
+            title = "Steam - News";
+          }
+          {
+            class = "^Steam$";
+            title = ".* - Chat";
+          }
+          {
+            class = "^Steam$";
+            title = "^Settings$";
+          }
+          {
+            class = "^Steam$";
+            title = ".* - event started";
+          }
+          {
+            class = "^Steam$";
+            title = ".* CD key";
+          }
+          {
+            class = "^Steam$";
+            title = "^Steam - Self Updater$";
+          }
+          {
+            class = "^Steam$";
+            title = "^Screenshot Uploader$";
+          }
+          {
+            class = "^Steam$";
+            title = "^Steam Guard - Computer Authorization Required$";
+          }
+          {title = "^Steam Keyboard$";}
         ];
       };
       window = {
@@ -84,7 +113,6 @@ "${mod}+Shift+7" = "move container to workspace 7";         "${mod}+Shift+8" = "move container to workspace 8";
         "${mod}+Shift+9" = "move container to workspace 9";
         "${mod}+Shift+0" = "move container to workspace 10";
-
 
         # move workspace
         "${mod}+Mod1+h" = "move workspace to output left";
M user/settings/ledger.nixuser/settings/ledger.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.file.".ledgerrc".text = ''
     --date-format %F
     --start-of-week 1
M user/settings/mail.nixuser/settings/mail.nix
@@ -1,6 +1,9 @@-{ config, lib, pkgs, ... }:
-
 {
+  config,
+  lib,
+  pkgs,
+  ...
+}: {
   home.packages = [
     pkgs.html2text
   ];
M user/settings/music-management.nixuser/settings/music-management.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     beets
   ];
M user/settings/music.nixuser/settings/music.nix
@@ -1,18 +1,20 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     cmus
     playerctl
     sonixd
-    (tauon.override { withDiscordRPC = true; })
+    (tauon.override {withDiscordRPC = true;})
   ];
 
   xdg.desktopEntries.sonixd = {
     name = "sonixd";
     exec = "sonixd";
     comment = "Sonixd Music Player";
-		categories = [ "Audio" "AudioVideo" ];
+    categories = ["Audio" "AudioVideo"];
     genericName = "Music Player";
   };
 }
M user/settings/nix.nixuser/settings/nix.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   nixpkgs.config = import ../config.nix;
   nixpkgs.overlays = [
     (import ../overlays/extra-packages.nix)
M user/settings/nixos.nixuser/settings/nixos.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   imports = [
     ./nix.nix
     ./nixpkgs.nix
M user/settings/nixpkgs.nixuser/settings/nixpkgs.nix
@@ -1,17 +1,18 @@-{ config, pkgs, ... }:
-
-let
+{
+  config,
+  pkgs,
+  ...
+}: let
   inherit (pkgs) stdenv;
   stableConfig = config.nixpkgs.config;
-in
-{
+in {
   imports = [
     ./nix.nix
   ];
   nixpkgs.overlays = [
     (self: super: {
-      firefox-bin-unwrapped = super.firefox-bin-unwrapped.override { systemLocale = "en-GB"; };
-      firefox-devedition-bin-unwrapped = super.firefox-devedition-bin-unwrapped.override { systemLocale = "en-GB"; };
+      firefox-bin-unwrapped = super.firefox-bin-unwrapped.override {systemLocale = "en-GB";};
+      firefox-devedition-bin-unwrapped = super.firefox-devedition-bin-unwrapped.override {systemLocale = "en-GB";};
     })
   ];
 }
M user/settings/passwords.nixuser/settings/passwords.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.packages = with pkgs; [
     keepassxc
     pwgen
M user/settings/rofi.nixuser/settings/rofi.nix
@@ -1,6 +1,9 @@-{ config, lib, pkgs, ... }:
-
 {
+  config,
+  lib,
+  pkgs,
+  ...
+}: {
   xdg.configFile."networkmanager-dmenu/config.ini".text = ''
     [dmenu]
     dmenu_command = ${pkgs.rofi}/bin/dmenu
@@ -12,7 +15,7 @@ ''; 
   nixpkgs.overlays = [
     (self: super: {
-      rofi= super.rofi.overrideAttrs (oldAttrs: rec {
+      rofi = super.rofi.overrideAttrs (oldAttrs: rec {
         postInstall = ''
           ln $out/bin/rofi $out/bin/dmenu
         '';
M user/settings/satoshipay.nixuser/settings/satoshipay.nix
@@ -1,12 +1,14 @@-{ config, lib, pkgs, ... }:
-
-let
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}: let
   inherit (pkgs) stdenv;
   spGitConfig = {
     user.email = "alan@satoshipay.io";
   };
-in
-{
+in {
   imports = [
     ./development/javascript.nix
     ./development/web.nix
@@ -16,32 +18,33 @@ home.sessionVariables = {     KUBECTX_IGNORE_FZF = "1";
   };
   home.packages = with pkgs; ([
-    caddy
-    openssl
-    mongodb-tools
-    pgcli
-    pgformatter
-    postgresql
-    s3cmd
-    sops
+      caddy
+      openssl
+      mongodb-tools
+      pgcli
+      pgformatter
+      postgresql
+      s3cmd
+      sops
 
-    lumen
+      lumen
 
-    mkcert
-    google-cloud-sdk
-    doctl
-    kubectl
-    kubetail
-    kubectx
-    kubernetes-helm
-    helmfile
-  ] ++ (lib.optionals (!stdenv.isDarwin)
-  [
-    docker-compose
+      mkcert
+      google-cloud-sdk
+      doctl
+      kubectl
+      kubetail
+      kubectx
+      kubernetes-helm
+      helmfile
+    ]
+    ++ (lib.optionals (!stdenv.isDarwin)
+      [
+        docker-compose
 
-    ripcord
-    robo3t
-  ]));
+        ripcord
+        robo3t
+      ]));
 
   programs.git.includes = [
     {
@@ -84,8 +87,7 @@ }; 
   accounts.email.accounts.satoshipay = let
     address = "alan@satoshipay.io";
-  in
-  {
+  in {
     inherit address;
     primary = lib.mkDefault true;
     realName = "Alan Pearce";
M user/settings/ssh.nixuser/settings/ssh.nix
@@ -1,6 +1,9 @@-{ config, lib, pkgs, ... }:
-
 {
+  config,
+  lib,
+  pkgs,
+  ...
+}: {
   programs.ssh = {
     enable = true;
     compression = true;
M user/settings/sxhkd.nixuser/settings/sxhkd.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   xdg.configFile."sxhkd/sxhkdrc".text = ''
     XF86AudioMute
       pamixer --toggle-mute
M user/settings/tabnine.nixuser/settings/tabnine.nix
@@ -1,7 +1,9 @@-{ config, pkgs, ... }:
-
 {
-  imports = [ ../modules/tabnine.nix ];
+  config,
+  pkgs,
+  ...
+}: {
+  imports = [../modules/tabnine.nix];
   home.packages = with pkgs; [
     tabnine
   ];
@@ -26,7 +28,7 @@ hosted_deep_completions_enabled = "Disabled";       tabnine_cloud_certificate_domain = null;
       tabnine_cloud_host = null;
       tabnine_cloud_port = null;
-      cloud_whitelist = [ ];
+      cloud_whitelist = [];
       api_key = null;
       api_key_service_level = null;
       api_base_url = null;
@@ -44,40 +46,41 @@ };     lspConfig = {
       "language.typescript" = {
         command = "typescript-language-server";
-        args = [ "--stdio" ];
+        args = ["--stdio"];
       };
       "language.javascript" = {
         command = "javascript-typescript-stdio";
-        args = [ "--stdio" ];
+        args = ["--stdio"];
       };
       "language.css" = {
         command = "css-languageserver";
-        args = [ "--stdio" ];
+        args = ["--stdio"];
       };
       "language.scss" = {
         command = "css-languageserver";
-        args = [ "--stdio" ];
+        args = ["--stdio"];
       };
       "language.html" = {
         command = "html-languageserver";
-        args = [ "--stdio" ];
+        args = ["--stdio"];
       };
       "language.dockerfile" = {
         command = "docker-langserver";
-        args = [ "--stdio" ];
+        args = ["--stdio"];
       };
       "language.yaml" = {
         command = "yaml-language-server";
-        args = [ "--stdio" ];
+        args = ["--stdio"];
       };
       "language.haskell" = {
         command = "hie";
-        args = [ "--stdio" ];
+        args = ["--stdio"];
       };
       "language.go" = {
         command = "go-langserver";
         args = [
-          "-mode" "stdio"
+          "-mode"
+          "stdio"
           "-gocodecompletion"
         ];
       };
M user/settings/trezor.nixuser/settings/trezor.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.file.".ssh/agent.config" = {
     text = ''
       ecdsa-curve-name = ed25519
M user/settings/user-interface.nixuser/settings/user-interface.nix
@@ -1,28 +1,31 @@-{ config, pkgs, ... }:
-
-let
+{
+  config,
+  pkgs,
+  ...
+}: let
   inherit (pkgs) stdenv;
-in
-{
+in {
   home.sessionVariables = {
     TERMINAL = "xterm";
   };
 
   programs.keychain = {
     enable = true;
-    extraFlags = [ "--quiet" "--systemd" ];
-    keys = [ ];
+    extraFlags = ["--quiet" "--systemd"];
+    keys = [];
   };
 
   nixpkgs.config.librewolf = {
     enablePlasmaBrowserIntegration = true;
   };
-  home.packages = with pkgs; [
-    librewolf
-    logseq
-  ] ++ lib.optionals (!stdenv.isDarwin) (with pkgs; [
-    falkon
-    mu
-    signal-desktop
-  ]);
+  home.packages = with pkgs;
+    [
+      librewolf
+      logseq
+    ]
+    ++ lib.optionals (!stdenv.isDarwin) (with pkgs; [
+      falkon
+      mu
+      signal-desktop
+    ]);
 }
M user/settings/xresources.nixuser/settings/xresources.nix
@@ -1,6 +1,8 @@-{ config, pkgs, ... }:
-
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.file.".xresources" = {
     recursive = true;
     source = ../xresources;
M user/settings/zsh.nixuser/settings/zsh.nix
@@ -1,16 +1,25 @@-{ config, lib, pkgs, ... }:
-
-let
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}: let
   inherit (pkgs) stdenv;
-  lsOptions = if stdenv.isDarwin then "-p" else "-v --group-directories-first";
-  lsIsoDate = if stdenv.isDarwin then "" else "--time-style=long-iso";
+  lsOptions =
+    if stdenv.isDarwin
+    then "-p"
+    else "-v --group-directories-first";
+  lsIsoDate =
+    if stdenv.isDarwin
+    then ""
+    else "--time-style=long-iso";
   zshrc = ".config/zsh/.zshrc";
   mkZshPlugin = attrs: {
     name = attrs.name;
     src = stdenv.mkDerivation {
       inherit (attrs) src;
       name = "zsh-plugin-${attrs.name}";
-      buildInputs = [ pkgs.zsh ];
+      buildInputs = [pkgs.zsh];
       buildPhase = ''
         zsh -c 'for f in **/*.zsh; zcompile "$f"'
       '';
@@ -19,8 +28,7 @@ cp -a $PWD $out/       '';
     };
   };
-in
-{
+in {
   home.packages = with pkgs; [
     fzf
     ghq
@@ -52,7 +60,7 @@ localVariables = {       ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=8";
     };
 
-    plugins = (map mkZshPlugin [
+    plugins = map mkZshPlugin [
       {
         name = "cd-gitroot";
         src = pkgs.fetchFromGitHub {
@@ -93,7 +101,7 @@ # date = 2021-04-02T17:42:59+09:00;           sha256 = "0qmm0xm1aiy3fnn2vib26z10cfy707yqg0vg5236r7978glswdlg";
         };
       }
-    ]);
+    ];
 
     shellAliases = {
       l = "ls ${lsOptions} -Bp";
@@ -111,10 +119,8 @@       https = "http --default-scheme https";
 
       history = "fc -l $(( $LINES - 2 ))";
-      hist-freq-lines =
-        "fc -l -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less";
-      hist-freq-commands =
-        "fc -l -10000 | cut -d' ' -f4 | sort | uniq -c | sort -g | tail -n10 | less";
+      hist-freq-lines = "fc -l -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less";
+      hist-freq-commands = "fc -l -10000 | cut -d' ' -f4 | sort | uniq -c | sort -g | tail -n10 | less";
       wprop = "xprop | egrep '^WM_(CLASS|NAME|WINDOW_ROLE|TYPE)'";
 
       # Enable the following commands to support aliases.
@@ -213,26 +219,28 @@ path+=($HOME/go/bin)       fi
     '';
 
-    initExtra = ''
-      autoload -Uz compinit
-      compinit -C
-      typeset -T GHQ_ROOT ghq_root
-      export GHQ_ROOT="$HOME/projects"
+    initExtra =
+      ''
+        autoload -Uz compinit
+        compinit -C
+        typeset -T GHQ_ROOT ghq_root
+        export GHQ_ROOT="$HOME/projects"
 
-      function hist-freq-subcommands () {
-        fc -l -m "$1*" -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less
-      }
+        function hist-freq-subcommands () {
+          fc -l -m "$1*" -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less
+        }
 
-      source ${pkgs.fzf}/share/fzf/key-bindings.zsh
-      source ${pkgs.fzf}/share/fzf/completion.zsh
+        source ${pkgs.fzf}/share/fzf/key-bindings.zsh
+        source ${pkgs.fzf}/share/fzf/completion.zsh
 
-    '' + builtins.readFile ../zsh/zshrc + (
-      if stdenv.isDarwin
-      then builtins.readFile ../zsh/zshrc.darwin
-      else ""
-    );
+      ''
+      + builtins.readFile ../zsh/zshrc
+      + (
+        if stdenv.isDarwin
+        then builtins.readFile ../zsh/zshrc.darwin
+        else ""
+      );
   };
 
-  home.file."${zshrc}".onChange =
-    "${pkgs.zsh}/bin/zsh -i -c 'autoload -Uz compinit && compinit && zcompile ${zshrc}'";
+  home.file."${zshrc}".onChange = "${pkgs.zsh}/bin/zsh -i -c 'autoload -Uz compinit && compinit && zcompile ${zshrc}'";
 }