Update flake inputs

1. Use `stdenv.hostPlatform.system` instead of `system`.
2. Use `runCommand` instead of `runCommandNoCC`.
3. Add new nixpkgs instance for neochat.
4. Set niri config to null when other GUI module.
This commit is contained in:
ulic-youthlic 2025-10-28 23:22:41 +08:00
parent 0db7c6ec72
commit 1319168f0b
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
10 changed files with 186 additions and 269 deletions

View file

@ -1,11 +1,12 @@
{
inputs,
system,
stdenv,
editor-runtime,
symlinkJoin,
makeWrapper,
}:
let
inherit (stdenv.hostPlatform) system;
inherit (inputs) nixpkgs emacs-overlay nix-doom;
pkgs = import nixpkgs {
localSystem = { inherit system; };
@ -31,9 +32,10 @@ let
git
ripgrep
fd
imagemagick
])
++ [ editor-runtime ];
++ [
editor-runtime
];
};
in
symlinkJoin {