more fixes on warning for renamed system

This commit is contained in:
Noah Masur
2025-12-25 17:22:12 -07:00
parent a99c14a8c2
commit 44c4034236
2 changed files with 4 additions and 2 deletions

View File

@@ -4,7 +4,8 @@
inputs: _final: prev: { inputs: _final: prev: {
# Provides `pkgs.stable`. # Provides `pkgs.stable`.
stable = import inputs.nixpkgs-stable { stable = import inputs.nixpkgs-stable {
inherit (prev) system config; system = prev.stdenv.hostPlatform.system;
inherit (prev) config;
overlays = [ overlays = [
# inputs.self.overlays.vim-plugins # inputs.self.overlays.vim-plugins
]; ];

View File

@@ -4,7 +4,8 @@
inputs: _final: prev: { inputs: _final: prev: {
# Provides `pkgs.unstable`. # Provides `pkgs.unstable`.
unstable = import inputs.nixpkgs { unstable = import inputs.nixpkgs {
inherit (prev) system config; system = prev.stdenv.hostPlatform.system;
inherit (prev) config;
overlays = [ overlays = [
# inputs.self.overlays.vim-plugins # inputs.self.overlays.vim-plugins
]; ];