infra/nix/variables/versions.tmpl.nix
Stefan Junker de0de83c5b nix: bump template and t480s-work to nixos 20.03
Notable changes:
* add extraConfig for gpg-agent to define the path to the pinentry-program
* removed X11 session directory activation script
2020-03-13 09:16:55 +01:00

20 lines
814 B
Nix

{
channelsNixosStable = {
ref = "nixos-20.03";
rev = "<% git ls-remote https://github.com/nixos/nixpkgs-channels nixos-20.03 | awk '{ print $1 }' | tr -d '\n' -%>";
};
channelsNixosUnstable = {
ref = "nixos-unstable";
rev = "<% git ls-remote https://github.com/nixos/nixpkgs-channels nixos-unstable | awk '{ print $1 }' | tr -d '\n' -%>";
};
nixpkgsMaster = {
url = "https://github.com/NixOS/nixpkgs/";
ref = "master";
rev = "<% git ls-remote https://github.com/NixOS/nixpkgs.git master | head -n1 | awk '{ print $1 }' | tr -d '\n' -%>";
};
homeManagerModule = {
url = "https://github.com/rycee/home-manager";
ref = "release-19.09";
rev = "<% git ls-remote https://github.com/rycee/home-manager.git release-19.09 | awk '{ print $1 }' | tr -d '\n' -%>";
};
}