From 2a405c06075516addf574fa5c3e610e1c5a08228 Mon Sep 17 00:00:00 2001 From: Root Date: Tue, 2 Mar 2021 17:09:29 +0000 Subject: [PATCH] Update to 20.09 --- config/profiles/server.nix | 20 +++++++++++--------- configuration.nix | 2 +- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/config/profiles/server.nix b/config/profiles/server.nix index 477712e..6993817 100644 --- a/config/profiles/server.nix +++ b/config/profiles/server.nix @@ -2,6 +2,16 @@ with lib; 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" '' if [ $# -ne 1 ]; then echo "FAILED: no sync file provided." @@ -44,15 +54,7 @@ in { config = { environment = { - systemPackages = with pkgs; [ - emacs-nox - ldns - ldns.examples - jdk12_headless - racket-minimal - reboot-if-necessary - test-config - ]; + systemPackages = serverPackages; # noXlibs = lib.mkForce true; }; diff --git a/configuration.nix b/configuration.nix index ecf4d52..92d48ab 100644 --- a/configuration.nix +++ b/configuration.nix @@ -13,7 +13,7 @@ in { domain = local.domain; home-manager-package = builtins.fetchGit { url = "https://github.com/nix-community/home-manager.git"; - ref = "release-20.03"; + ref = "release-20.09"; }; }) ];