Compare commits

..

No commits in common. "332cb78c0095012f4e7148342f11dd7a8fb3626f" and "12f5aa330c95db39a120b44c90744add6a7fe336" have entirely different histories.

3 changed files with 38 additions and 46 deletions

View file

@ -10,11 +10,11 @@
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1714136352, "lastModified": 1712079060,
"narHash": "sha256-BtWQ2Th/jamO1SlD+2ASSW5Jaf7JhA/JLpQHk0Goqpg=", "narHash": "sha256-/JdiT9t+zzjChc5qQiF+jhrVhRt8figYH29rZO7pFe4=",
"owner": "ryantm", "owner": "ryantm",
"repo": "agenix", "repo": "agenix",
"rev": "24a7ea390564ccd5b39b7884f597cfc8d7f6f44e", "rev": "1381a759b205dff7a6818733118d02253340fd5e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -241,11 +241,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1714763106, "lastModified": 1713537308,
"narHash": "sha256-DrDHo74uTycfpAF+/qxZAMlP/Cpe04BVioJb6fdI0YY=", "narHash": "sha256-XtTSSIB2DA6tOv+l0FhvfDMiyCmhoRbNB+0SeInZkbk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e9be42459999a253a9f92559b1f5b72e1b44c13d", "rev": "5c24cf2f0a12ad855f444c30b2421d044120c66f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -29,6 +29,7 @@
#pkgs.atool #pkgs.atool
#pkgs.httpie #pkgs.httpie
pkgs.webcord pkgs.webcord
pkgs.pika-backup
pkgs.tigervnc pkgs.tigervnc
pkgs.syncthing pkgs.syncthing
pkgs.zsh-syntax-highlighting pkgs.zsh-syntax-highlighting

View file

@ -50,52 +50,43 @@
encryption.mode = "repokey-blake2"; encryption.mode = "repokey-blake2";
encryption.passCommand = "cat ${config.age.secrets.borg.path}"; encryption.passCommand = "cat ${config.age.secrets.borg.path}";
compression = "auto,zstd"; compression = "auto,zstd";
prune.keep = {
within = "1d";
daily = 10;
weekly = 4;
monthly = 2;
};
readWritePaths = [ "/mnt/NAS-backup/insertpclinux-insert" ];
repo = "/mnt/NAS-backup/insertpclinux-insert"; repo = "/mnt/NAS-backup/insertpclinux-insert";
user = "insert"; user = "insert";
startAt = "daily"; startAt = "daily";
doInit = false;
exclude = [ exclude = [
"^data.img$" "^data.img$"
"^.Trash-100$" "^.Trash-100$"
"*/node.repl_history" "/node.repl_history"
"*/.oldprofile" "/.oldprofile"
"*/.steampath" "/.steampath"
"*/mnt" "/mnt"
"*/.steampid" "/.steampid"
"*/.zshenv" "/.zshenv"
"*/.zshrc" "/.zshrc"
"*/.android" "/.android"
"*/.compose-cache" "/.compose-cache"
"*/.docker" "/.docker"
"*/.gradle" "/.gradle"
"*/.hyprland" "/.hyprland"
"*/.java" "/.java"
"*/.kube" "/.kube"
"*/.minecraft-bta" "/.minecraft-bta"
"*/.mozilla" "/.mozilla"
"*/.pki" "/.nix-defexpr"
"*/.nix-defexpr" "/.nix-profile"
"*/.nix-profile" "/.nv"
"*/.nv" "/.thunderbird"
"*/.thunderbird" "/.zsh"
"*/.zsh" "/Downloads"
"*/Downloads" "/.cache"
"*/.cache" "/.var/app/*/cache"
"*/.var/app/*/cache" "/.local/share/flatpak/repo/"
"*/.local/share/flatpak/repo/" "/.local/share/Trash"
"*/.local/share/Trash" "/.local/share/libvirt"
"*/.local/share/libvirt" "/.local/share/containers"
"*/.local/share/containers" "/.local/share/flatpak/overrides"
"*/.local/share/flatpak/overrides" "/.var/app/*/config/cache"
"*/.var/app/*/config/cache" "/.var/app/*/config"
"*/.var/app/*/config"
]; ];
}; };