Coordinate-Cat / my-nix-awesome

日本語でnix関連まとめていくだけのレポジトリ

Home Page:https://coordinate-cat.github.io/my-nix-awesome/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

my-nix-awesome

日本語でnix関連まとめていくだけのレポジトリ

rule:

  • en to ja

Official(公式サイト)

Official(公式レポジトリ)








nixpkgs

  • home-managerを使うのにいる
nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
nix-channel --update

home-manager

  • nixpkgsを入れた後に以下を実行
nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager
nix-channel --update

nix-shell '<home-manager>' -A install

nix-darwin

その他

まじで動かなくなった時

{ config, pkgs, ... }:

{
  # Use a custom configuration.nix location.
  # $ darwin-rebuild switch -I darwin-config=$HOME/.config/nixpkgs/darwin/configuration.nix
  environment.darwinConfig = "$HOME/.config/nixpkgs/darwin/configuration.nix";

  # ...
}