2023-06-17 10:30:39 +01:00
|
|
|
{...}: {
|
2023-06-09 10:15:24 +01:00
|
|
|
imports = [./default.nix ./git/work.nix ./ssh/work.nix];
|
2023-06-27 14:02:03 +01:00
|
|
|
programs.fish.functions.fsync = ''
|
2023-06-17 10:30:39 +01:00
|
|
|
rsync -avz --filter=':- .gitignore' --exclude='.git*'\
|
|
|
|
--delete-during --delete-excluded\
|
|
|
|
$HOME/.config/nvim/ freia:.config/nvim
|
2023-06-27 14:02:03 +01:00
|
|
|
rsync -avz --delete-during --delete-excluded\
|
|
|
|
$HOME/.config/starship.toml freia:.config/starship.toml
|
2023-06-17 10:30:39 +01:00
|
|
|
'';
|
2023-06-27 11:41:18 +01:00
|
|
|
programs.firefox.profiles.default = {
|
|
|
|
settings."browser.startup.homepage" = "https://nucleus.ukaea.uk";
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "toolbar";
|
|
|
|
toolbar = true;
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "Gitea";
|
|
|
|
tags = ["git" "source" "xenia"];
|
|
|
|
url = "https://git.xenia.me.uk";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "GitHub";
|
|
|
|
tags = ["git" "source"];
|
|
|
|
url = "https://github.com";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "GitLab";
|
|
|
|
tags = ["git" "source"];
|
|
|
|
url = "https://gitlab.com";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "UKAEA GitLab";
|
2023-06-27 11:50:04 +01:00
|
|
|
tags = ["git" "source"];
|
2023-06-27 11:41:18 +01:00
|
|
|
url = "https://git.ccfe.ac.uk";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Nucleus";
|
|
|
|
url = "https://nucleus.ukaea.uk";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "U4BW";
|
2023-06-27 11:50:04 +01:00
|
|
|
tags = ["admin"];
|
2023-06-27 11:41:18 +01:00
|
|
|
url = "https://ubw.unit4cloud.com/uk_aea_prod_web";
|
|
|
|
}
|
|
|
|
{
|
2023-06-27 11:50:04 +01:00
|
|
|
name = "JET homepage";
|
|
|
|
tags = ["JET"];
|
|
|
|
url = "w3.jet.uk";
|
2023-06-27 11:41:18 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Physics Summary";
|
2023-06-27 11:50:04 +01:00
|
|
|
tags = ["JET" "operations"];
|
2023-06-27 11:41:18 +01:00
|
|
|
url = "https://users.euro-fusion.org/pages/physics-summary/LatestSession.php";
|
|
|
|
}
|
|
|
|
{
|
2023-06-27 11:50:04 +01:00
|
|
|
name = "OpenWikis";
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "Home page";
|
|
|
|
tags = ["JET" "operations" "wiki"];
|
|
|
|
url = "https://wiki.jetdata.eu/open/index.php?title=Main_Page";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Spectroscopy Group";
|
|
|
|
tags = ["JET" "operations" "wiki"];
|
|
|
|
url = "https://wiki.jetdata.eu/open/index.php?title=Spectroscopy_Group:index";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "KS5";
|
|
|
|
tags = ["JET" "operations" "wiki"];
|
|
|
|
url = "https://wiki.jetdata.eu/open/index.php?title=CXS:Topic3";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "KT3";
|
|
|
|
tags = ["JET" "operations" "wiki"];
|
|
|
|
url = "https://wiki.jetdata.eu/open/index.php?title=KT3_Journals";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "JET Mimics";
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "Countdown";
|
|
|
|
tags = ["JET" "operations" "mimics"];
|
|
|
|
url = "http://webmimic.jet.uk/mc/codas/countdown";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "KS5";
|
|
|
|
tags = ["JET" "operations" "mimics"];
|
|
|
|
url = "http://webmimic.jet.uk/DG/codas/ks5.mim.html";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "KT3";
|
|
|
|
tags = ["JET" "operations" "mimics"];
|
|
|
|
url = "http://webmimic.jet.uk/DG/codas/kt3.mim.html";
|
|
|
|
}
|
|
|
|
];
|
2023-06-27 11:41:18 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2023-04-25 14:43:08 +01:00
|
|
|
}
|