nixos: upgrade to 24.05 and fix errors

This commit is contained in:
Rouven Seifert 2024-06-16 18:12:57 +02:00
parent 05152b6db4
commit 059a4ebf0e
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
5 changed files with 13 additions and 11 deletions

View file

@ -26,7 +26,10 @@
mailcommand = "${pkgs.bacula}/bin/bsmtp -f \"Bacula <bacula@${config.networking.domain}>\" -s \"Bacula report" %r"
mail = root+backup = all, !skipped
'';
director."abel-dir".password = "@${config.sops.secrets."bacula/password".path}";
director."abel-dir" = {
password = "@${config.sops.secrets."bacula/password".path}";
tls.enable = false;
};
};
environment.etc."bacula/bconsole.conf".text = ''
Director {

View file

@ -1,6 +1,5 @@
{ pkgs, config, ... }: {
nix = {
package = pkgs.nixUnstable; # or versioned attributes like nix_2_4
extraOptions = ''
experimental-features = nix-command flakes
'';