13 lines
246 B
Nix
13 lines
246 B
Nix
{ pkgs }:
|
|
let
|
|
workstationProfile = import ./workstation.nix { inherit pkgs; };
|
|
|
|
desktopPkgs = with pkgs; [
|
|
unstable.chromium
|
|
foot # Wayland-native terminal emulator
|
|
];
|
|
in
|
|
{
|
|
packages = workstationProfile.packages ++ desktopPkgs;
|
|
}
|