{ config, pkgs, ... }: { home.username = "shubh"; home.homeDirectory = "/home/shubh"; # You should not change this value, even if you update Home Manager. If you do # want to update the value, then make sure to first check the Home Manager # release notes. home.stateVersion = "23.05"; home.packages = with pkgs; [ git unzip wget gnupg file pinentry wl-clipboard pass tmux fzf firefox brave libreoffice-qt # (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; }) ]; imports = [ ../../modules/common.nix ]; services.gpg-agent = { enable = true; pinentryFlavor = "qt"; }; xdg = { userDirs = { enable = true; desktop = "\$HOME/desktop"; documents = "\$HOME/docs"; download = "\$HOME/downloads"; pictures = "\$HOME/pics"; music = "\$HOME/music"; videos = "\$HOME/vids"; }; }; }