Update flake paths in examples

I don't think /home/crumb/src/tf2-nix is the correct path for very many people...
This commit is contained in:
Shelvacu
2025-06-29 17:55:30 -07:00
committed by Shelvacu on fw
parent 36fb39c38b
commit 539bb2ac7c
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 #+begin_src nix
{ {
inputs = { inputs = {
tf2-nix.url = "path:///home/crumb/src/tf2-nix"; tf2-nix.url = "gitlab:msyds/tf2-nix";
}; };
outputs = { self, ... }@inputs: outputs = { self, ... }@inputs:

View File

@@ -1,7 +1,10 @@
{ {
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 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: { outputs = { self, ... }@inputs: {