From 539bb2ac7ce9339a2085e4def35b8b269116db03 Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Sun, 29 Jun 2025 17:55:30 -0700 Subject: [PATCH] Update flake paths in examples I don't think /home/crumb/src/tf2-nix is the correct path for very many people... --- README.org | 2 +- example/flake.nix | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 1109e6c..0133e0e 100644 --- a/README.org +++ b/README.org @@ -44,7 +44,7 @@ Bring in the input, and build your TF2 config as a package: #+begin_src nix { inputs = { - tf2-nix.url = "path:///home/crumb/src/tf2-nix"; + tf2-nix.url = "gitlab:msyds/tf2-nix"; }; outputs = { self, ... }@inputs: diff --git a/example/flake.nix b/example/flake.nix index fb1cdb6..e3590fa 100644 --- a/example/flake.nix +++ b/example/flake.nix @@ -1,7 +1,10 @@ { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - tf2-nix.url = "path:///home/crumb/src/tf2-nix"; + tf2-nix = { + url = "gitlab:msyds/tf2-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { self, ... }@inputs: {