Evie Litherland-Smith
8c7f8dba52
Move collections to use default.nix in relevant directories Combine GUI elements into gui directory
19 lines
233 B
Nix
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
|
|
];
|
|
}
|