update flake, fix breaking changes
This commit is contained in:
@ -8,7 +8,6 @@
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
attic-client
|
||||
attic
|
||||
];
|
||||
|
||||
services = {
|
||||
@ -30,7 +29,7 @@
|
||||
atticd = {
|
||||
enable = true;
|
||||
|
||||
credentialsFile = config.sops.secrets."attic/secret-key".path;
|
||||
environmentFile = config.sops.secrets."attic/secret-key".path;
|
||||
|
||||
settings = {
|
||||
listen = "[::]:8183";
|
||||
@ -96,7 +95,7 @@
|
||||
serviceConfig = {
|
||||
User = "root";
|
||||
Restart = "always";
|
||||
ExecStart = "${pkgs.attic}/bin/attic watch-store cache-nix-dot";
|
||||
ExecStart = "${pkgs.attic-client}/bin/attic watch-store cache-nix-dot";
|
||||
};
|
||||
};
|
||||
attic-sync-hydra = {
|
||||
|
@ -1,5 +1,7 @@
|
||||
{ inputs, ... }:
|
||||
{
|
||||
users = [ "alice" ];
|
||||
modules = [ inputs.attic.nixosModules.atticd ];
|
||||
modules = [
|
||||
# inputs.attic.nixosModules.atticd
|
||||
];
|
||||
}
|
||||
|
@ -16,9 +16,11 @@ in
|
||||
passwordFile = config.sops.secrets."gitea/dbpass".path;
|
||||
host = "127.0.0.1:5432";
|
||||
};
|
||||
domain = "git.alicehuston.xyz";
|
||||
rootUrl = "https://git.alicehuston.xyz/";
|
||||
httpPort = 443;
|
||||
settings.server = {
|
||||
domain = "git.alicehuston.xyz";
|
||||
rootUrl = "https://git.alicehuston.xyz/";
|
||||
httpPort = 443;
|
||||
};
|
||||
stateDir = base_path;
|
||||
lfs.enable = true;
|
||||
recommendedDefaults = true;
|
||||
|
Reference in New Issue
Block a user