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.
This commit is contained in:
Timothy DeHerrera 2021-03-16 22:52:28 -06:00
parent 9ba1e7f9bc
commit 44623b5979
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
3 changed files with 1 additions and 23 deletions

1
extern/default.nix vendored
View file

@ -9,7 +9,6 @@ in
];
overlays = [
nix.overlay
nur.overlay
devshell.overlay
(final: prev: {

View file

@ -152,25 +152,6 @@
"type": "github"
}
},
"nix": {
"inputs": {
"nixpkgs": [
"nixos"
]
},
"locked": {
"lastModified": 1615911544,
"narHash": "sha256-2V0qJ9EaPjOetEzEx0vxP+dxKOX8ZXJi7PIlLjkxymA=",
"owner": "NixOS",
"repo": "nix",
"rev": "66fa1c7375e4b3073a16df4678cf1d37446ed20b",
"type": "github"
},
"original": {
"id": "nix",
"type": "indirect"
}
},
"nixos": {
"locked": {
"lastModified": 1615797423,
@ -270,7 +251,6 @@
"flake-compat": "flake-compat",
"home": "home",
"naersk": "naersk",
"nix": "nix",
"nixos": "nixos",
"nixos-hardware": "nixos-hardware",
"nur": "nur",

View file

@ -22,14 +22,13 @@
home.inputs.nixpkgs.follows = "nixos";
naersk.url = "github:nmattia/naersk";
naersk.inputs.nixpkgs.follows = "override";
nix.inputs.nixpkgs.follows = "nixos";
nixos-hardware.url = "github:nixos/nixos-hardware";
utils.url = "github:numtide/flake-utils/flatten-tree-system";
pkgs.url = "path:./pkgs";
pkgs.inputs.nixpkgs.follows = "nixos";
};
outputs = inputs@{ deploy, nixos, nur, nix, self, utils, ... }:
outputs = inputs@{ deploy, nixos, nur, self, utils, ... }:
let
inherit (self) lib;
inherit (lib) os;