(desktop) Gen 496: fixed 'invoke' script, altered firefox bookmarks

This commit is contained in:
pagedMov
2024-10-16 01:03:43 -04:00
committed by pagedmov
parent 1c2d41ac49
commit e1c6724893
4 changed files with 48 additions and 23 deletions

View File

@@ -30,16 +30,42 @@
name = "${username}";
bookmarks = [
{
name = "NixOS Options";
url = "https://search.nixos.org/options";
}
{
name = "Home Manager Options";
url = "https://home-manager-options.extranix.com/";
}
{
name = "Nixvim Docs";
url = "https://nix-community.github.io/nixvim/";
name = "Nix Sites";
toolbar = true;
bookmarks = [
{
name = "NixOS Wiki";
url = "https://nixos.wiki/wiki/Main_Page";
}
{
name = "Nixpkgs Reference Manual";
url = "https://nixos.org/manual/nixpkgs/stable/";
}
{
name = "NixOS Manual";
url = "https://nixos.org/manual/nixos/stable/";
}
{
name = "NixOS Options";
url = "https://search.nixos.org/options";
}
{
name = "Home Manager Options";
url = "https://home-manager-options.extranix.com/";
}
{
name = "Nixpkgs Package Search";
url = "https://search.nixos.org/packages";
}
{
name = "Noogle - Nixpkgs Function Docs";
url = "https://noogle.dev";
}
{
name = "Nixvim Docs";
url = "https://nix-community.github.io/nixvim/";
}
];
}
{
name = "Rust Manual";
@@ -68,7 +94,6 @@
firenvim
privacy-badger
new-tab-override
tampermonkey
];
extraConfig = ''
"browser.startup.homepage" = "${self}/glasshouse-desktop/home/firefox/homepage.html";

View File

@@ -5,5 +5,5 @@
pkgs.writeShellScriptBin "invoke" ''
#!/run/current-system/sw/bin/bash
nix run nixpkgs#$"@"
nix run nixpkgs#"$@"
''