{ config, pkgs, ... }: { boot = { supportedFilesystems = [ "zfs" ]; zfs = { forceImportRoot = false; }; }; environment = { systemPackages = with pkgs; [ borgbackup git gnupg jq mosh silver-searcher tmux vim ]; }; i18n = { defaultLocale = "en_US.UTF-8"; }; networking = { domain = "tyil.net"; }; services = { openssh = { enable = true; }; }; system = { copySystemConfiguration = true; }; time = { timeZone = "Europe/Amsterdam"; }; users = { users = { tyil = { isNormalUser = true; extraGroups = [ "wheel" ]; }; }; }; }