Merge branch 'patch-readme-url' into 'main'

Update flake paths in examples

See merge request msyds/tf2-nix!1
This commit is contained in:
Madeleine
2025-07-06 06:42:53 +00:00
2 changed files with 5 additions and 2 deletions

View File

@@ -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:

View File

@@ -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: {