turns out there are two packages not building rn

This commit is contained in:
xqtc161 2024-05-06 11:40:28 +02:00
parent 6af7634075
commit 3e1c4636b2
3 changed files with 17 additions and 3 deletions

View file

@ -110,6 +110,17 @@ with inputs; {
definedAliases = ["@nw"]; definedAliases = ["@nw"];
}; };
"nixpkgs PR Tracker" = {
urls = [
{
template = "https://nixpk.gs/pr-tracker.html?pr={searchTerms}";
}
];
iconUpdateURL = "https://nixos.wiki/favicon.png";
updateInterval = 24 * 60 * 60 * 1000; # every day
definedAliases = ["@npr"];
};
"Reddit" = { "Reddit" = {
urls = [ urls = [
{ {

View file

@ -11,8 +11,8 @@
pkgs.protonup-qt pkgs.protonup-qt
pkgs.via pkgs.via
pkgs.telegram-desktop pkgs.telegram-desktop
pkgs.anki # pkgs.anki
pkgs.yubioath-flutter # pkgs.yubioath-flutter
# pkgs.spotify # pkgs.spotify
] ]
else []; else [];

View file

@ -13,7 +13,10 @@
eza.enable = true; eza.enable = true;
nushell = { nushell = {
enable = true; enable = true;
shellAliases = {ls = "eza -l --icons --tree --level 2 --header --git --group-directories-first";}; shellAliases = {
ls = "eza -l --icons --tree --level 2 --header --git --group-directories-first";
reload = "clear; source $nu.config-path";
};
extraConfig = "maxfetch"; extraConfig = "maxfetch";
configFile = { configFile = {
text = builtins.readFile ../config-files/config.nu; text = builtins.readFile ../config-files/config.nu;