{ config, pkgs, ... }: { imports = [ ]; # Define a user account. Don't forget to set a password with ‘passwd’. users.users.andrew = { isNormalUser = true; extraGroups = [ "networkmanager" "wheel" ]; packages = with pkgs; [ ]; }; hjem.users.andrew = { directory = "/home/andrew"; files = { ".config/sxhkd/sxhkdrc".text = builtins.readFile ( pkgs.replaceVars ./dotfiles/sxhkdrc { dmenu = pkgs.dmenu; st = pkgs.st; librewolf = pkgs.librewolf; pamixer = pkgs.pamixer; maim = pkgs.maim; xdotool = pkgs.xdotool; xclip = pkgs.xclip; lockscreen = pkgs.lock-screen; } ); }; packages = with pkgs; [ discord lazygit ]; }; }