gpt4 book ai didi

sublimetext2 - 如何将 sublime 安装到 nixos?

转载 作者:行者123 更新时间:2023-12-01 16:58:03 29 4
gpt4 key购买 nike

我发现 nixos 支持 sublime : https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/sublime/default.nix .

虽然我不知道如何安装它。

我没有成功地遵循这些说明:https://nixos.org/wiki/Nix_Installing_Packages

我也试过这个:

git remote add channels git://github.com/NixOS/nixpkgs-channels.git

但这并没有帮助。

最佳答案

在没有 NixOS 的情况下使用 nix

cat ~/.nixpkgs/config.nix

{
allowUnfree = true;
}

nix-env -i sublime

在 NixOS 上

cat/etc/nixos/configuration.nix

...
{ config, pkgs, ... }:
{
# ...
environment.systemPackages = with pkgs; [
sublime
];
nixpkgs.config = {
allowUnfree = true;
};
}

sudo nixos-rebuild switch --upgrade

关于sublimetext2 - 如何将 sublime 安装到 nixos?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30409665/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com