fix: resolve nix build warnings

This commit is contained in:
2026-02-22 16:40:20 +01:00
parent b895e85953
commit 7b13880be2
9 changed files with 28 additions and 24 deletions

View File

@@ -8,7 +8,6 @@ with pkgs;
fzf
htop
jq
nixfmt-rfc-style
nmap
nodejs_24
nvimpager

View File

@@ -26,7 +26,7 @@ in
};
extensions = {
force = true;
packages = with inputs.firefox-addons.packages.${pkgs.system}; [
packages = with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
duckduckgo-privacy-essentials
firefox-color
istilldontcareaboutcookies

View File

@@ -3,7 +3,7 @@
{
config = {
home.packages = [
inputs.nvim.packages.${pkgs.system}.nvim
inputs.nvim.packages.${pkgs.stdenv.hostPlatform.system}.nvim
];
};
}