treewide: Adapt to system rename

This commit is contained in:
Quentin Boyer 2025-11-08 12:49:12 +01:00
parent b006081cf3
commit 629517eded
2 changed files with 3 additions and 3 deletions

View file

@ -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'';
};
};

View file

@ -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;
};
};