Skip to content

Commit dd326bf

Browse files
committed
nix: don't use nix flake
I originally wanted to use the nix flake to allow users to take advantage of the latest changes. Just so happened that nixpkgs was recently updated with a new version around the same time, and this just adds complexity for no real gain.
1 parent ed09ae4 commit dd326bf

File tree

3 files changed

+1
-23
lines changed

3 files changed

+1
-23
lines changed

extern/default.nix

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ in
99
];
1010

1111
overlays = [
12-
nix.overlay
1312
nur.overlay
1413
devshell.overlay
1514
(final: prev: {

flake.lock

-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@
2222
home.inputs.nixpkgs.follows = "nixos";
2323
naersk.url = "github:nmattia/naersk";
2424
naersk.inputs.nixpkgs.follows = "override";
25-
nix.inputs.nixpkgs.follows = "nixos";
2625
nixos-hardware.url = "github:nixos/nixos-hardware";
2726
utils.url = "github:numtide/flake-utils/flatten-tree-system";
2827
pkgs.url = "path:./pkgs";
2928
pkgs.inputs.nixpkgs.follows = "nixos";
3029
};
3130

32-
outputs = inputs@{ deploy, nixos, nur, nix, self, utils, ... }:
31+
outputs = inputs@{ deploy, nixos, nur, self, utils, ... }:
3332
let
3433
inherit (self) lib;
3534
inherit (lib) os;

0 commit comments

Comments
 (0)