Skip to content

Commit

Permalink
rename nixpkgs-release to just nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Sep 6, 2022
1 parent 5186549 commit 47c6b4a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions flake.nix
Expand Up @@ -2,19 +2,19 @@
description = "bytes.zone infrastructure";

inputs = {
nixpkgs-release.url = "github:NixOS/nixpkgs/release-22.05";
nixpkgs.url = "github:NixOS/nixpkgs/release-22.05";

bad-datalog.url =
"git+https://git.bytes.zone/brian/bad-datalog.git?ref=main";
bad-datalog.inputs.nixpkgs.follows = "nixpkgs-release";
bad-datalog.inputs.nixpkgs.follows = "nixpkgs";

bytes-zone.url =
"git+https://git.bytes.zone/bytes.zone/bytes.zone.git?ref=main";
bytes-zone.inputs.nixpkgs.follows = "nixpkgs-release";
bytes-zone.inputs.nixpkgs.follows = "nixpkgs";

elo-anything.url =
"git+https://git.bytes.zone/brian/elo-anything.git?ref=main";
elo-anything.inputs.nixpkgs.follows = "nixpkgs-release";
elo-anything.inputs.nixpkgs.follows = "nixpkgs";

goatcounter = {
url = "github:zgoat/goatcounter/release-1.4";
Expand All @@ -23,7 +23,7 @@

nates-mazes.url =
"git+https://git.bytes.zone/brian/nates-mazes.git?ref=main";
nates-mazes.inputs.nixpkgs.follows = "nixpkgs-release";
nates-mazes.inputs.nixpkgs.follows = "nixpkgs";

sysz = {
url = "github:joehillen/sysz";
Expand All @@ -34,7 +34,7 @@
outputs = inputs:
let
mkOverlays = system:
let pkgs = import inputs.nixpkgs-release { inherit system; };
let pkgs = import inputs.nixpkgs { inherit system; };
in [
inputs.bad-datalog.overlay.${system}
inputs.bytes-zone.overlay.${system}
Expand Down Expand Up @@ -72,7 +72,7 @@
})
];
in {
nixosConfigurations.gitea = inputs.nixpkgs-release.lib.nixosSystem rec {
nixosConfigurations.gitea = inputs.nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";

modules = [
Expand All @@ -82,7 +82,7 @@
};

devShells = builtins.listToAttrs (map (system:
let pkgs = import inputs.nixpkgs-release { inherit system; };
let pkgs = import inputs.nixpkgs { inherit system; };
in {
name = system;
value = {
Expand Down

0 comments on commit 47c6b4a

Please sign in to comment.