Skip to content

Instantly share code, notes, and snippets.

@kaznak
Last active March 10, 2025 02:06
Show Gist options
  • Save kaznak/9fb959eeb42a71dd0c62eb51b2051b6d to your computer and use it in GitHub Desktop.
Save kaznak/9fb959eeb42a71dd0c62eb51b2051b6d to your computer and use it in GitHub Desktop.
Install home-manager into userland
#!/usr/bin/env bash
set -vxe
source /etc/os-release
nix-channel --remove home-manager
nix-channel --add https://github.com/nix-community/home-manager/archive/release-${VERSION_ID}.tar.gz home-manager
nix-channel --update
cat <<EOF > ${HOME}/.config/home-manager/home.nix
{ config, pkgs, ... }:
{
home.username = "nixos";
home.homeDirectory = "/home/nixos";
home.stateVersion = "${VERSION_ID}";
home.packages = [
pkgs.zsh
pkgs.vim
pkgs.git
];
home.file = {
};
home.sessionVariables = {
};
programs.home-manager.enable = true;
}
EOF
home-manager switch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment