nixos/home/collections/work/default.nix

41 lines
812 B
Nix

{ pkgs, lib, ... }:
{
imports = [
../common/desktop.nix
../../git/work.nix
];
programs.ssh.matchBlocks = {
"batch" = {
user = "cxsbatch";
hostname = "heimdall115.jetdata.eu";
};
"jupyter" = {
hostname = "freia022.hpc.l";
localForwards = [
{
bind.port = 6702;
host.address = "localhost";
host.port = 6702;
}
];
};
"freia" = {
hostname = "freia022.hpc.l";
};
"freia???" = lib.hm.dag.entryAfter [ "freia" ] {
hostname = "%h.hpc.l";
};
"freia* jupyter" = lib.hm.dag.entryAfter [ "freia" "freia???" "jupyter" ] {
user = "elitherl";
};
};
home.packages = with pkgs; [
libreoffice-fresh
neovide
nomachine-client
otpclient
teams
zoom-us
];
}