{ pkgs }: let workstationProfile = import ./workstation.nix { inherit pkgs; }; desktopPkgs = with pkgs; [ browser-previews.google-chrome foot # Wayland-native terminal emulator wofi # Application launcher for Wayland ]; in { packages = workstationProfile.packages ++ desktopPkgs; environment.persistence."/persist/home/ppetru".directories = [ ".config/google-chrome" ]; }