Rename my //users directory and all places that refer to glittershark to grfn, including nix references and documentation. This may require some extra attention inside of gerrit's database after it lands to allow me to actually push things. Change-Id: I4728b7ec2c60024392c1c1fa6e0d4a59b3e266fa Reviewed-on: https://cl.tvl.fyi/c/depot/+/2933 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: glittershark <grfn@gws.fyi>
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -eo pipefail
 | |
| 
 | |
| if [[ -f /etc/nixos/.system-installed ]]; then
 | |
|     echo "=== System config already installed, skipping"
 | |
| else
 | |
|     echo "==> Installing system config"
 | |
| 
 | |
|     [[ -d /etc/nixos ]] && sudo mv /etc/nixos{,.bak}
 | |
|     sudo mkdir -p /etc/nixos
 | |
|     sudo cp /etc/nixos.bak/hardware-configuration.nix /etc/nixos
 | |
| 
 | |
|     sudo cp ./system/configuration.nix /etc/nixos/
 | |
|     sudo ln -s $(pwd)/system/{machines,modules,pkgs} /etc/nixos
 | |
|     sudo touch /etc/nixos/.system-installed
 | |
| 
 | |
|     echo "==> System config installed, your old configuration is at /etc/nixos.bak"
 | |
| fi
 | |
| echo
 | |
| 
 | |
| if [[ -f ~/.config/nixpkgs/system-installed ]]; then
 | |
|     echo "=== home-manager config already installed, skipping"
 | |
| else
 | |
|     echo "==> Installing home-manager config"
 | |
|     nix-channel --add https://github.com/rycee/home-manager/archive/master.tar.gz home-manager
 | |
|     nix-channel --update
 | |
|     # nix-shell '<home-manager>' -A install
 | |
| 
 | |
|     [[ -d ~/.config/nixpkgs ]] && mv ~/.config/{nixpkgs,nixpkgs.bak}
 | |
|     mkdir -p ~/.config/nixpkgs
 | |
|     ln -s $(pwd)/home/* ~/.config/nixpkgs
 | |
| 
 | |
|     echo "==> home-manager config installed"
 | |
| fi
 |