nixos/home/work.nix
Evie Litherland-Smith 8c7f8dba52 Rearrange again to reduce complexity
Move collections to use default.nix in relevant directories
Combine GUI elements into gui directory
2023-05-15 11:12:17 +01:00

19 lines
233 B
Nix

{ pkgs, ... }:
{
imports = [
./env
./gui
./tui
./git/work.nix
./ssh/work.nix
];
home.packages = with pkgs; [
libreoffice-fresh
neovide
nomachine-client
otpclient
teams
zoom-us
];
}