{ config, pkgs, ... }: let # Be able to use unstable packages pkgsUnstable = import {}; in { # Required programs.home-manager.enable = true; home.username = "earne"; home.homeDirectory = "/home/earne"; home.packages = with pkgs; [ authy # non-free barrier pkgsUnstable.discord # non-free google-chrome # non-free todoist-electron # non-free pkgsUnstable.zoom-us # non-free # Doom Emacs + dependencies pkgsUnstable.fd pkgsUnstable.ripgrep pkgsUnstable.emacs aerc isync khard pkgsUnstable.logseq sublime-music alacritty gitFull git-extras ghq pkgsUnstable.neovim tmux yadm ]; # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage # when a new Home Manager release introduces backwards # incompatible changes. # # You can update Home Manager without changing this value. See # the Home Manager release notes for a list of state version # changes in each release. home.stateVersion = "21.05"; }