summary refs log tree commit diff stats
path: root/flake.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-21 19:53:48 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-21 19:53:48 +0100
commit6c8ba79371470b63bc510c3a1a1131b50d0d6445 (patch)
tree52fd40c1a9cf9b76894b1c6b0a195ac01f44589c /flake.nix
parentfeat: Initial commit (diff)
downloadnix-6c8ba79371470b63bc510c3a1a1131b50d0d6445.zip
feat(flake): Use the released git https inputs
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix17
1 files changed, 14 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index b793868..44e1e42 100644
--- a/flake.nix
+++ b/flake.nix
@@ -14,15 +14,26 @@
   inputs = {
     nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
 
+    # Inputs for following
+    rust-overlay = {
+      url = "github:oxalica/rust-overlay";
+      inputs = {
+        nixpkgs.follows = "nixpkgs";
+      };
+    };
+    crane.url = "github:ipetkov/crane";
+
     rocie-mobile = {
-      url = "git+file:../rocie-mobile";
+      url = "git+https://git.foss-syndicate.org/bpeetz/rocie/web-client?ref=prime";
       inputs = {
         nixpkgs.follows = "nixpkgs";
         treefmt-nix.follows = "treefmt-nix";
+        rust-overlay.follows = "rust-overlay";
+        crane.follows = "crane";
       };
     };
     rocie-server = {
-      url = "git+file:../rocie-server";
+      url = "git+https://git.foss-syndicate.org/bpeetz/rocie/server?ref=prime";
       inputs = {
         nixpkgs.follows = "nixpkgs";
         treefmt-nix.follows = "treefmt-nix";
@@ -43,10 +54,10 @@
     treefmt-nix,
     rocie-mobile,
     rocie-server,
+    ...
   }: let
     system = "x86_64-linux";
     pkgs = nixpkgs.legacyPackages."${system}";
-    inherit (pkgs) lib;
 
     treefmtEval = import ./treefmt.nix {inherit treefmt-nix pkgs;};