fixup all kinds of bugs

This commit is contained in:
steveej 2022-01-09 21:50:41 +01:00
parent 02bb843015
commit acc37c64f9
10 changed files with 45 additions and 31 deletions

View file

@ -53,6 +53,7 @@ in rec {
sudo -E $SHELL <<EOF
# 'having $system set breaks nixos-install'
unset system
echo $NIX_PATH
nixos-install --max-jobs 5 --cores 4 --no-root-passwd --root ${mntRootVol}/nixos
EOF
'';

View file

@ -1,8 +1,8 @@
let
nixpkgs = {
url = "https://github.com/NixOS/nixpkgs/";
ref = "nixos-21.05";
rev = "5de44c15758465f8ddf84d541ba300b48e56eda4";
ref = "nixos-21.11";
rev = "00acdb2aa817048fbe1f91ece18fe7de09762531";
};
in
@ -12,19 +12,25 @@ in
suffix = "/nixos";
};
"channels-nixos-stable" = nixpkgs;
# "channels-nixos-21.05" = {
# url = "https://github.com/NixOS/nixpkgs/";
# ref = "nixos-21.05";
# rev = "88579effa7e88c25087faf6de6388d0cd1738dc0";
# };
"channels-nixos-unstable" = {
url = "https://github.com/NixOS/nixpkgs/";
ref = "nixos-unstable";
rev = "fbfb79400a08bf754e32b4d4fc3f7d8f8055cf94";
rev = "ff377a78794d412a35245e05428c8f95fef3951f";
};
"nixpkgs-master" = {
url = "https://github.com/NixOS/nixpkgs/";
ref = "master";
rev = "7e529086a7ce588380178733a42ff2a293ac080c";
rev = "a85f163c46f4315df772946796a6527069789bc7";
};
"home-manager-module" = {
url = "https://github.com/nix-community/home-manager";
ref = "release-21.05";
rev = "148d85ee8303444fb0116943787aa0b1b25f94df";
ref = "release-21.11";
rev = "697cc8c68ed6a606296efbbe9614c32537078756";
};
}