Skip to content

Coordinate-Cat/my-nix-awesome

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

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";

  # ...
}