diff options
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index 58821993..bd8a8d48 100644 --- a/flake.nix +++ b/flake.nix @@ -13,6 +13,9 @@ url = "github:ryantm/agenix"; inputs.nixpkgs.follows = "nixpkgs"; }; + impermanence = { + url = "github:nix-community/impermanence"; + }; neovim_config = { url = "git+https://codeberg.org/ene/neovim-config.git"; @@ -29,8 +32,9 @@ flake = false; }; - impermanence = { - url = "github:nix-community/impermanence"; + snap-sync = { + url = "github:qubidt/snap-sync"; + flake = false; }; }; @@ -43,6 +47,7 @@ user_js, impermanence, agenix, + snap-sync, ... } @ inputs: { nixosConfigurations.Tiamat = nixpkgs.lib.nixosSystem rec { @@ -64,6 +69,7 @@ inherit system; inherit neovim_config; inherit impermanence; + inherit snap-sync; }; }; } |