{ config, pkgs, user, name, ... }: # https://nix-community.github.io/home-manager/options.html { # don't change home.stateVersion = "22.05"; home.packages = with pkgs; [ sbctl onedrive kubectl docker-compose gimp libreoffice ansible ]; programs.git = { enable = true; userName = "Tristan Beedell"; userEmail = "tristan.beedell@cryoserver.com"; aliases = { graph = "log --oneline --all --graph"; amend = "commit --amend --no-edit"; }; }; accounts.email.accounts."tristan.beedell@cryoserver.com" = { userName = "tristan.beedell@cryoserver.com"; realName = "Tristan Beedell"; address = "tristan.beedell@cryoserver.com"; primary = true; }; wayland.windowManager.hyprland = { extraConfig = '' exec-once = swaybg -o eDP-1 -i ~/Pictures/backgrounds/nix-wallpaper-simple-red.png & monitor = ,preferred,auto, 1.2 input { kb_variant = dvorak } ''; }; gtk = { gtk3.bookmarks = [ "file:///home/tristan/OneDrive/Documents/ OneDrive" ]; }; }