Update to 20.09

This commit is contained in:
Root 2021-03-02 17:09:29 +00:00
parent ce77837769
commit 2a405c0607
2 changed files with 12 additions and 10 deletions

View File

@ -2,6 +2,16 @@
with lib; with lib;
let let
serverPackages = with pkgs; [
emacs-nox
ldns
ldns.examples
jdk14_headless
racket-minimal
reboot-if-necessary
test-config
];
reboot-if-necessary = pkgs.writeShellScriptBin "reboot-if-necessary" '' reboot-if-necessary = pkgs.writeShellScriptBin "reboot-if-necessary" ''
if [ $# -ne 1 ]; then if [ $# -ne 1 ]; then
echo "FAILED: no sync file provided." echo "FAILED: no sync file provided."
@ -44,15 +54,7 @@ in {
config = { config = {
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = serverPackages;
emacs-nox
ldns
ldns.examples
jdk12_headless
racket-minimal
reboot-if-necessary
test-config
];
# noXlibs = lib.mkForce true; # noXlibs = lib.mkForce true;
}; };

View File

@ -13,7 +13,7 @@ in {
domain = local.domain; domain = local.domain;
home-manager-package = builtins.fetchGit { home-manager-package = builtins.fetchGit {
url = "https://github.com/nix-community/home-manager.git"; url = "https://github.com/nix-community/home-manager.git";
ref = "release-20.03"; ref = "release-20.09";
}; };
}) })
]; ];