srv0: update to nixos 21.11
This commit is contained in:
parent
87b8954fde
commit
988c414b00
3 changed files with 7 additions and 5 deletions
|
@ -1,8 +1,8 @@
|
|||
let
|
||||
nixpkgs = {
|
||||
url = "https://github.com/NixOS/nixpkgs/";
|
||||
ref = "nixos-21.05";
|
||||
rev = "<% git ls-remote https://github.com/nixos/nixpkgs nixos-21.05 | awk '{ print $1 }' | tr -d '\n' -%>";
|
||||
ref = "nixos-21.11";
|
||||
rev = "<% git ls-remote https://github.com/nixos/nixpkgs nixos-21.11 | awk '{ print $1 }' | tr -d '\n' -%>";
|
||||
};
|
||||
in
|
||||
|
||||
|
@ -36,7 +36,7 @@ in
|
|||
};
|
||||
"home-manager-module" = {
|
||||
url = "https://github.com/nix-community/home-manager";
|
||||
ref = "release-21.05";
|
||||
rev = "<% git ls-remote https://github.com/nix-community/home-manager.git release-21.05 | awk '{ print $1 }' | tr -d '\n' -%>";
|
||||
ref = "release-21.11";
|
||||
rev = "<% git ls-remote https://github.com/nix-community/home-manager.git release-21.11 | awk '{ print $1 }' | tr -d '\n' -%>";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -24,7 +24,8 @@ in {
|
|||
ssl = true;
|
||||
domains = [ cfg.domain ];
|
||||
use = "web";
|
||||
inherit (passwords.dyndns.${cfg.domain}) username password;
|
||||
inherit (passwords.dyndns.${cfg.domain}) username;
|
||||
passwordFile = builtins.toFile "" passwords.dyndns.${cfg.domain}.password;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -80,6 +80,7 @@ in rec {
|
|||
"--without-fpm-systemd"
|
||||
];
|
||||
|
||||
meta.license = null;
|
||||
});
|
||||
|
||||
duplicacy = pkgs.callPackage ../pkgs/duplicacy {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue