meta: Use personal branches for inputs

This lets me do things like only update inputs when I want to.
Additionally, it becomes easy for me to add my own functionality to
these projects and contribute to them upstream. Finally, it becomes
easier to verify changes to the system when pulling changes from
upstream.
This commit is contained in:
Donovan Glover 2023-07-15 11:42:23 -04:00
parent d389c910c4
commit 50ba2f9352
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -3,12 +3,12 @@
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable"; nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/master"; url = "github:donovanglover/home-manager/personal-master";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
stylix = { stylix = {
url = "github:danth/stylix"; url = "github:donovanglover/stylix/personal-master";
inputs = { inputs = {
nixpkgs.follows = "nixpkgs"; nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager"; home-manager.follows = "home-manager";