diff --git a/neovim/config/lsp.nix b/neovim/config/lsp.nix index e52df9f..d9fa76b 100644 --- a/neovim/config/lsp.nix +++ b/neovim/config/lsp.nix @@ -171,7 +171,7 @@ in { nixos.expr = ''${getFlake}.nixosConfigurations.ZeNixComputa.options''; - nixvim.expr = ''${getFlake}.packages.${pkgs.system}.neovimTraxys.options''; + nixvim.expr = ''${getFlake}.packages.${pkgs.stdenv.hostPlatform.system}.neovimTraxys.options''; home-manager.expr = ''${getFlake}.homeConfigurations."boyerq@thinkpad-nixos".options''; }; }; diff --git a/wm/hm.nix b/wm/hm.nix index 80e84d2..f4a0043 100644 --- a/wm/hm.nix +++ b/wm/hm.nix @@ -22,11 +22,11 @@ }; traxys.pkgs.niri-unstable = lib.mkOption { type = lib.types.package; - default = niri.packages.${pkgs.system}.niri-unstable; + default = niri.packages.${pkgs.stdenv.hostPlatform.system}.niri-unstable; }; traxys.pkgs.xwayland-satellite-unstable = lib.mkOption { type = lib.types.package; - default = niri.packages.${pkgs.system}.xwayland-satellite-unstable; + default = niri.packages.${pkgs.stdenv.hostPlatform.system}.xwayland-satellite-unstable; }; };