'system' has been renamed to/replaced by 'stdenv.hostPlatform.system'

This commit is contained in:
William 2026-02-18 16:08:53 -03:00
parent 79a6bd53bf
commit 561fdf5ef4
4 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@
{ {
environment.systemPackages = environment.systemPackages =
(with pkgs; [ ]) (with pkgs; [ ])
++ (with inputs.nix-ai-tools.packages.${pkgs.system}; [ ++ (with inputs.nix-ai-tools.packages.${pkgs.stdenv.hostPlatform.system}; [
claude-code claude-code
claudebox claudebox
opencode opencode

View file

@ -48,7 +48,7 @@
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
xwayland-satellite xwayland-satellite
inputs.noctalia.packages.${pkgs.system}.default inputs.noctalia.packages.${pkgs.stdenv.hostPlatform.system}.default
]; ];
sessionVariables.QT_QPA_PLATFORMTHEME = "gtk3"; sessionVariables.QT_QPA_PLATFORMTHEME = "gtk3";
}; };

View file

@ -9,7 +9,7 @@
}: }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
inputs.zen-browser.packages."${pkgs.system}".default inputs.zen-browser.packages."${pkgs.stdenv.hostPlatform.system}".default
bitwarden-desktop bitwarden-desktop
fragments fragments
nextcloud-client nextcloud-client

View file

@ -6,7 +6,7 @@
{ {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = with pkgs; [ packages = with pkgs; [
inputs.agenix.packages.${system}.default inputs.agenix.packages.${stdenv.hostPlatform.system}.default
nil nil
nixfmt nixfmt
]; ];