added newtabpage to config.nix

This commit is contained in:
kenji
2025-12-24 13:53:02 -06:00
parent 7cd5b88c45
commit a4f41a0371
3 changed files with 69 additions and 31 deletions
+20 -1
View File
@@ -4,7 +4,7 @@
username = "kenji";
hostname = "hakase";
timezone = "America/Chicago";
shell = "fish";
shell = "fish"; # FIXME: unassigned variable
};
git = {
username = "kenji";
@@ -12,6 +12,7 @@
defaultBranch = "master";
};
ssh = {
# FIXME: anonymize
extraConfig = ''
Host macair
User biscuit
@@ -32,5 +33,23 @@
hyprland = {
monitors = ["HDMI-A-1, 1920x1080@120, auto, 1"];
};
firefox = {
bookmarks = [
{
name = "Home Manager";
url = "https://mynixos.com/home-manager/options/programs";
}
{
name = "YouTube";
url = "https://youtube.com";
}
];
newtabpage = [
{
title = "Dashboard";
url = "https://dash.sakamoto.dev";
}
];
};
};
}