All Projects → nix-community → Home Manager

nix-community / Home Manager

Licence: mit
Manage a user environment using Nix [maintainer=@rycee]

Programming Languages

Nix
1067 projects
shell
77523 projects
ruby
36898 projects - #4 most used programming language
perl
6916 projects
HTML
75241 projects
Makefile
30231 projects

Projects that are alternatives of or similar to Home Manager

nixpkgs
My Nix system configs!
Stars: ✭ 143 (-94.16%)
Mutual labels:  dotfiles, nix, nixpkgs, nix-dotfiles
system
Declarative NixOS system configuration for all my machines
Stars: ✭ 14 (-99.43%)
Mutual labels:  dotfiles, nix, nixos
dotnix
Shackled within an elaborate prison of my own design.
Stars: ✭ 35 (-98.57%)
Mutual labels:  dotfiles, nix, nixos
Dotfiles
My dotfiles
Stars: ✭ 150 (-93.87%)
Mutual labels:  dotfiles, nixos, nix
dotfiles
No place like ~. Nix. All. The. Things.
Stars: ✭ 48 (-98.04%)
Mutual labels:  nix, nixos, nixpkgs
dotfiles
My NixOS dotfiles
Stars: ✭ 21 (-99.14%)
Mutual labels:  dotfiles, nix, nixos
Shabka
Shabka. Declaritive description of my network, workstations and servers.
Stars: ✭ 138 (-94.36%)
Mutual labels:  dotfiles, nixos, nix
nix-bisect
Bisect nix builds. Status: alpha/proof of concept. You'll probably have to dig into the implementation if you want to use it. Built for personal use, lightly maintained. PRs welcome. Issues welcome, but I make no promises regarding responses or fix
Stars: ✭ 72 (-97.06%)
Mutual labels:  nix, nixos, nixpkgs
Nixpkgs
Nix Packages collection
Stars: ✭ 8,322 (+240.09%)
Mutual labels:  nixos, nix, nixpkgs
Nixos Config
NixOS configurations for server and desktop systems, including user specific config. with Home Manager
Stars: ✭ 30 (-98.77%)
Mutual labels:  dotfiles, nixos, nix
Dotfiles
Configuration files for XMonad, Emacs, NixOS, Taffybar and more.
Stars: ✭ 127 (-94.81%)
Mutual labels:  dotfiles, nixos, nix
System
My system configuration
Stars: ✭ 94 (-96.16%)
Mutual labels:  dotfiles, nixos, nix
nix-config
NixOS configuration (also on WSL)
Stars: ✭ 51 (-97.92%)
Mutual labels:  nix, nixos, nix-dotfiles
Nix Config
My NixOS configuration
Stars: ✭ 112 (-95.42%)
Mutual labels:  dotfiles, nixos, nix
nixpkgs-python-importer
Violate Nix philosophy, install Python packages mid-session with `from nixpkgs.scipy import scipy`.
Stars: ✭ 27 (-98.9%)
Mutual labels:  nix, nixos, nixpkgs
Idempotent Desktop
🛸 NixOS, Xmonad, Neovim
Stars: ✭ 51 (-97.92%)
Mutual labels:  dotfiles, nixos, nix
yants
Yet Another Nix Type System | Source has moved to https://git.tazj.in/tree/nix/yants
Stars: ✭ 35 (-98.57%)
Mutual labels:  nix, nixos, nixpkgs
triton
Triton Operating System
Stars: ✭ 56 (-97.71%)
Mutual labels:  nix, nixos, nixpkgs
Dotfiles
And I say hey, what's going on?
Stars: ✭ 348 (-85.78%)
Mutual labels:  dotfiles, nixos, nix
Nix Dotfiles
My personal nix and nixos configuration
Stars: ✭ 48 (-98.04%)
Mutual labels:  dotfiles, nixos, nix

Home Manager using Nix

This project provides a basic system for managing a user environment using the Nix package manager together with the Nix libraries found in Nixpkgs. It allows declarative configuration of user specific (non global) packages and dotfiles.

Before attempting to use Home Manager please read the warning below.

For a more systematic overview of Home Manager and its available options, please see the Home Manager manual.

Words of warning

Unfortunately, it is quite possible to get difficult to understand errors when working with Home Manager, such as infinite loops with no clear source reference. You should therefore be comfortable using the Nix language and the various tools in the Nix ecosystem. Reading through the Nix Pills document is a good way to familiarize yourself with them.

If you are not very familiar with Nix but still want to use Home Manager then you are strongly encouraged to start with a small and very simple configuration and gradually make it more elaborate as you learn.

In some cases Home Manager cannot detect whether it will overwrite a previous manual configuration. For example, the Gnome Terminal module will write to your dconf store and cannot tell whether a configuration that it is about to be overwritten was from a previous Home Manager generation or from manual configuration.

Home Manager targets NixOS unstable and NixOS version 21.11 (the current stable version), it may or may not work on other Linux distributions and NixOS versions.

Also, the home-manager tool does not explicitly support rollbacks at the moment so if your home directory gets messed up you'll have to fix it yourself. See the rollbacks section for instructions on how to manually perform a rollback.

Now when your expectations have been built up and you are eager to try all this out you can go ahead and read the rest of this text.

Contact

You can chat with us on IRC in the channel #home-manager on OFTC.

Installation

Home Manager can be used in three primary ways:

  1. Using the standalone home-manager tool. For platforms other than NixOS and Darwin, this is the only available choice. It is also recommended for people on NixOS or Darwin that want to manage their home directory independently of the system as a whole. See Standalone installation in the manual for instructions on how to perform this installation.

  2. As a module within a NixOS system configuration. This allows the user profiles to be built together with the system when running nixos-rebuild. See NixOS module installation in the manual for a description of this setup.

  3. As a module within a nix-darwin system configuration. This allows the user profiles to be built together with the system when running darwin-rebuild. See nix-darwin module installation in the manual for a description of this setup.

Translations

Home Manager has basic support for internationalization through gettext. The translations are hosted by Weblate. If you would like to contribute to the translation effort then start by going to the Home Manager Weblate project.

Translation status

Nix Flakes

Home Manager includes a flake.nix file for compatibility with Nix Flakes for those that wish to use it as a module. A bare-minimum flake.nix would be as follows:

{
  description = "NixOS configuration";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
    home-manager.url = "github:nix-community/home-manager";
  };

  outputs = { home-manager, nixpkgs, ... }: {
    nixosConfigurations = {
      hostname = nixpkgs.lib.nixosSystem {
        system = "x86_64-linux";
        modules = [
          ./configuration.nix
          home-manager.nixosModules.home-manager
          {
            home-manager.useGlobalPkgs = true;
            home-manager.useUserPackages = true;
            home-manager.users.jdoe = import ./home.nix;

            # Optionally, use home-manager.extraSpecialArgs to pass
            # arguments to home.nix
          }
        ];
      };
    };
  };
}

If you are not using NixOS you can place the following flake in ~/.config/nixpkgs/flake.nix to load your standard Home Manager configuration:

{
  description = "A Home Manager flake";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    home-manager.url = "github:nix-community/home-manager";
    home-manager.inputs.nixpkgs.follows = "nixpkgs";
  };

  outputs = inputs: {
    homeConfigurations = {
      jdoe = inputs.home-manager.lib.homeManagerConfiguration {
        system = "x86_64-linux";
        homeDirectory = "/home/jdoe";
        username = "jdoe";
        configuration.imports = [ ./home.nix ];
      };
    };
  };
}

Note, the Home Manager library is exported by the flake under lib.hm.

When using flakes, switch to new configurations as you do for the whole system (e. g. nixos-rebuild switch --flake <path>) instead of using the home-manager command line tool.

Releases

Home Manager is developed against nixpkgs-unstable branch, which often causes it to contain tweaks for changes/packages not yet released in stable NixOS. To avoid breaking users' configurations, Home Manager is released in branches corresponding to NixOS releases (e.g. release-21.11). These branches get fixes, but usually not new modules. If you need a module to be backported, then feel free to open an issue.

License

This project is licensed under the terms of the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].