mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-19 06:39:41 +02:00
13 lines
276 B
Nix
13 lines
276 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"electron-19.0.7" # required by wechat-uos, and it's already EOL
|
|
];
|
|
|
|
environment.systemPackages = with config.nur.repos.xddxdd; [
|
|
# packages from nur-xddxdd
|
|
wechat-uos
|
|
qqmusic
|
|
];
|
|
} |