18 lines
414 B
Nix
18 lines
414 B
Nix
{ 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 = [
|
|
".cache"
|
|
".config/google-chrome"
|
|
];
|
|
}
|