diff options
| author | Skullheadx <andrew@montgomery.systems> | 2026-07-20 23:46:54 -0400 |
|---|---|---|
| committer | Skullheadx <andrew@montgomery.systems> | 2026-07-20 23:47:00 -0400 |
| commit | 7048866f207a256b35393c39dacc2a9d01de123b (patch) | |
| tree | 58198120511c8856b9a5e5e78c24c86a4c28565b | |
| parent | increase num of jobs for build machine (diff) | |
| download | nixos-7048866f207a256b35393c39dacc2a9d01de123b.tar.gz nixos-7048866f207a256b35393c39dacc2a9d01de123b.tar.bz2 nixos-7048866f207a256b35393c39dacc2a9d01de123b.zip | |
use mirrored git repos in flake.nix
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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"; }; }; |
