Update to 20.09
This commit is contained in:
parent
ce77837769
commit
2a405c0607
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
})
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue