Home manager: Difference between revisions

From NixOS Wiki
imported>Srid
(→‎Examples: my config)
imported>Extends
(Added description of what we're doing, for beginners.)
Line 33: Line 33:
    
    
</syntaxhighlight>
</syntaxhighlight>
Builtins.fetch* are built-in functions, in our example, we are fetching either a github repository (fetchGit), or a tarball (fetchTarball). With fetchGit, we are fetching a specific commit of home-manager (the <code>rev</code> attribute). To get that, we can use [https://github.com/seppeljordan/nix-prefetch-github nix-prefetch-github], which will return a hash (sha256), an owner, a repository, and a commit (rev attribute, that's what we want here). Here, we are pinning 18.09's release, but you may want to change that to the version of NixOS you're using. Use master if you are on unstable.
Finally, in our example, we are fetching home-manager/nixos folder, that allows us to use more options from home-manager, which are options usable by NixOS only.


== Managing your dotfiles ==
== Managing your dotfiles ==

Revision as of 19:44, 21 July 2020

Home Manager is a basic system for managing a user environment using the Nix package manager together with the Nix libraries found in Nixpkgs. Before attempting to use Home Manager please read the warning.

Configuration

Home Manager can be configured in ~/.config/nixpkgs/home.nix or inside configuration.nix.

For the latter, add the following to your config. Note: fetchTarball does not check the integrity of the downloaded package.

  imports = [
    ...
    (import "${builtins.fetchTarball https://github.com/rycee/home-manager/archive/master.tar.gz}/nixos")
  ];
  home-manager.users.my_username = { ... }

For a more secure version:

let
  home-manager = builtins.fetchGit {
    url = "https://github.com/rycee/home-manager.git";
    rev = "dd94a849df69fe62fe2cb23a74c2b9330f1189ed"; # CHANGEME 
    ref = "release-18.09";
  };
in
{
    imports = [
      (import "${home-manager}/nixos")
    ];

    home-manager.users.my_username = { ... }
}


Builtins.fetch* are built-in functions, in our example, we are fetching either a github repository (fetchGit), or a tarball (fetchTarball). With fetchGit, we are fetching a specific commit of home-manager (the rev attribute). To get that, we can use nix-prefetch-github, which will return a hash (sha256), an owner, a repository, and a commit (rev attribute, that's what we want here). Here, we are pinning 18.09's release, but you may want to change that to the version of NixOS you're using. Use master if you are on unstable. Finally, in our example, we are fetching home-manager/nixos folder, that allows us to use more options from home-manager, which are options usable by NixOS only.

Managing your dotfiles

Home Manager has options to configure many common tools. As an example, adding the following

  programs.git = {
    enable = true;
    userName  = "my_git_username";
    userEmail = "my_git_username@gmail.com";
  };

will make Home Manager generate a .config/git/config file for you.

Even for programs for which Home Manager doesn't have configuration options, you can use it to manage your dotfiles, e.g.

  xdg.configFile."i3blocks/config".source = "${my-dotfile-dir}/i3blocks.conf"

This will create a symlink $XDG_CONFIG_HOME/i3blocks/config.

Examples

FAQ

I cannot set GNOME themes via home-manager

You will have to add

programs.dconf.enable = true;

to your system configuration. ( Source )

Alternatives

  • Wrappers vs. Dotfiles shows how (per-user) wrapper scripts can be used in place of dotfiles in the user's home directory