fix: use pkgs.stdenv.hostPlatform.system

`pkgs.stdenv.system` is deprecated

Co-authored-by: raf <raf@notashelf.dev>
This commit is contained in:
faretek1 2026-04-02 09:57:59 +01:00 committed by GitHub
commit 903c0d3a73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,7 +52,7 @@ the default theme enabled. You may use other options inside `config.vim` in
# Can also move this to another config file if you pass your own
# inputs/self around with specialArgs
({pkgs, ...}: {
environment.systemPackages = [self.packages.${pkgs.stdenv.system}.my-neovim];
environment.systemPackages = [self.packages.${pkgs.stdenv.hostPlatform.system}.my-neovim];
})
];
# ...