mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-11 21:12:00 +01:00
17 lines
522 B
Nix
17 lines
522 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# this params has problem with home-manager,
|
|
# so defined as NixOS Module here.
|
|
# nixpkgs.config.permittedInsecurePackages = [
|
|
# "electron-19.0.7" # required by wechat-uos, and it's already EOL
|
|
# "openssl-1.1.1u" # OpenSSL 1.1 is reaching its end of life on 2023/09/11
|
|
# ];
|
|
|
|
environment.systemPackages = [
|
|
# packages from nur-xddxdd
|
|
# config.nur.repos.xddxdd.wechat-uos
|
|
];
|
|
|
|
# flatpack is recommended to install other apps such as netease-cloud-music/qqmusic/...
|
|
} |