mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-22 15:43:42 +00:00
10 lines
399 B
Bash
Executable file
10 lines
399 B
Bash
Executable file
#!/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
echo_header "==[host] Installing Home Manager packages"
|
|
workspace_link nix/home.nix .config/home-manager/home.nix
|
|
workspace_link nix/core.nix .config/home-manager/core.nix
|
|
workspace_link nix/personal.nix .config/home-manager/personal.nix
|
|
workspace_link nix/work.nix .config/home-manager/work.nix
|
|
NIXPKGS_ALLOW_UNFREE=1 ENVIRONMENT=$ENVIRONMENT home-manager switch
|