mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-04-06 02:49:33 +00:00
fix: use pkgs.stdenv.hostPlatform.system
`pkgs.stdenv.system` is deprecated Co-authored-by: raf <raf@notashelf.dev>
This commit is contained in:
parent
daaa7b0ca9
commit
903c0d3a73
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
# Can also move this to another config file if you pass your own
|
||||||
# inputs/self around with specialArgs
|
# inputs/self around with specialArgs
|
||||||
({pkgs, ...}: {
|
({pkgs, ...}: {
|
||||||
environment.systemPackages = [self.packages.${pkgs.stdenv.system}.my-neovim];
|
environment.systemPackages = [self.packages.${pkgs.stdenv.hostPlatform.system}.my-neovim];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
# ...
|
# ...
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue