{ systemUser = { isNormalUser = true; extraGroups = [ "wheel" "persist" ]; # Change this immediately after installation! initialPassword = "password123"; }; home = { config, lib, pkgs, ... }: { sydnix.impermanence = { enable = false; directories = [ # ".ssh" # ".config/systemd" ]; mutableDotfiles = { enable = false; # files = [ # "nvim/.config/nvim/init.vim" # "nvim/.vimrc" # ]; # directories = [ # "qtile" # ]; }; }; home = { stateVersion = "18.09"; packages = [ pkgs.hello # pkgs.wezterm ]; }; }; }