unison over vpn

This commit is contained in:
Henri Dohmen 2025-10-10 23:47:35 +02:00
parent aca4caf02c
commit 07eb62fc87
Signed by: hd
GPG key ID: AB79213B044674AE
4 changed files with 25 additions and 3 deletions

View file

@ -1,6 +1,7 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-25.05";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
colmena = {
url = "github:zhaofengli/colmena";
@ -38,14 +39,16 @@
home-manager,
nixos-hardware,
nixpkgs,
nixpkgs-stable,
vscode-extensions,
}@inputs:
let
inherit (nixpkgs) lib;
lib' = import ./lib.nix { inherit lib; };
pkgs-stable = import nixpkgs-stable { system = "x86_64-linux"; };
specialArgs = rec {
inherit inputs lib';
inherit inputs lib' pkgs-stable;
var = import ./var { inherit lib; };
secrets = lib'.walk-dir ./secrets;
};