Skip to content

Commit

Permalink
rename unstable input to nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsawyer77 committed Jul 29, 2024
1 parent 2e149bf commit 6ea94d5
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
description = "mattsawyer77's environment";
inputs = {
unstable.url = "github:nixos/nixpkgs/master";
nixpkgs.url = "github:nixos/nixpkgs/master";
darwin = {
url = "github:LnL7/nix-darwin";
inputs.nixpkgs.follows = "unstable";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "unstable";
inputs.nixpkgs.follows = "nixpkgs";
};
# flake-utils.url = "github:numtide/flake-utils";
# nixpkgs-emacs.url = "github:nixos/nixpkgs/master";
Expand All @@ -34,20 +34,16 @@
};
nil = {
url = "github:oxalica/nil";
inputs.nixpkgs.follows = "unstable";
inputs.nixpkgs.follows = "nixpkgs";
};
mkalias = {
url = "github:reckenrode/mkalias";
inputs.nixpkgs.follows = "unstable";
inputs.nixpkgs.follows = "nixpkgs";
};
# for loki's logcli
loki = {
url = "github:grafana/loki";
inputs.nixpkgs.follows = "unstable";
};
poetry2nix = {
url = "github:nix-community/poetry2nix";
inputs.nixpkgs.follows = "unstable";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, darwin, flake-utils, home-manager, ... }@inputs: {
Expand Down

0 comments on commit 6ea94d5

Please sign in to comment.