summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSkullheadx <andrew@montgomery.systems>2026-07-20 23:46:54 -0400
committerSkullheadx <andrew@montgomery.systems>2026-07-20 23:47:00 -0400
commit7048866f207a256b35393c39dacc2a9d01de123b (patch)
tree58198120511c8856b9a5e5e78c24c86a4c28565b
parentincrease num of jobs for build machine (diff)
downloadnixos-7048866f207a256b35393c39dacc2a9d01de123b.tar.gz
nixos-7048866f207a256b35393c39dacc2a9d01de123b.tar.bz2
nixos-7048866f207a256b35393c39dacc2a9d01de123b.zip
use mirrored git repos in flake.nix
-rw-r--r--flake.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 0766b7a..8916328 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,9 +2,13 @@
description = "A minimal Suckless-inspired Flake for NixOS and Nix Darwin, created by Skullheadx.";
inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
+ nixpkgs = {
+ type = "git";
+ url = "git://git.skullheadx.com/nixpkgs.git";
+ ref = "refs/heads/nixos-unstable";
+ };
nix-darwin = {
- url = "github:nix-darwin/nix-darwin/master";
+ url = "git://git.skullheadx.com/nix-darwin.git";
inputs.nixpkgs.follows = "nixpkgs";
};
@@ -33,11 +37,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
nvf = {
- url = "github:notashelf/nvf";
+ url = "git://git.skullheadx.com/nvf.git";
inputs.nixpkgs.follows = "nixpkgs";
};
hjem = {
- url = "github:feel-co/hjem";
+ url = "git://git.skullheadx.com/hjem.git";
inputs.nixpkgs.follows = "nixpkgs";
};
};