Last active
March 10, 2025 02:06
-
-
Save kaznak/9fb959eeb42a71dd0c62eb51b2051b6d to your computer and use it in GitHub Desktop.
Install home-manager into userland
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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