Geoffrey Frogeye
7e49ed2e19
This was a fix attempt before I discovered that the issue was that nixos-install uses the root user's channels. Doesn't hurt anyways.
9 lines
292 B
Bash
Executable file
9 lines
292 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# TODO Surely there's more elegant?
|
|
|
|
nix-channel --add https://nixos.org/channels/nixos-23.05 nixpkgs
|
|
# Below probably only needed on non-NixOS
|
|
nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz home-manager
|
|
nix-channel --update
|