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:
parent
0db7c6ec72
commit
1319168f0b
10 changed files with 186 additions and 269 deletions
|
|
@ -28,6 +28,21 @@
|
|||
"immersive-translate"
|
||||
];
|
||||
packageOverrides = p: {
|
||||
kdePackages = p.kdePackages // {
|
||||
inherit
|
||||
((import inputs.nixpkgs-455083 {
|
||||
localSystem = {
|
||||
inherit (pkgs.stdenv.hostPlatform) system;
|
||||
};
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowInsecurePredicate = p: builtins.elem (lib.getName p) [ "olm" ];
|
||||
};
|
||||
}).kdePackages
|
||||
)
|
||||
neochat
|
||||
;
|
||||
};
|
||||
intel-vaapi-driver = p.intel-vaapi-driver.override { enableHybridCodec = true; };
|
||||
onnxruntime = p.onnxruntime.override {
|
||||
cudaSupport = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue