flake: use explicit input definitions
This commit is contained in:
parent
8a7411c418
commit
44b05768cd
23
flake.nix
23
flake.nix
|
@ -1,9 +1,26 @@
|
||||||
{
|
{
|
||||||
description = "Nixos configuration with flakes";
|
description = "Nixos configuration with flakes";
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-20.09";
|
nixpkgs = {
|
||||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
type = "github";
|
||||||
emacs-overlay.url = "github:nix-community/emacs-overlay/master";
|
owner = "NixOS";
|
||||||
|
repo = "nixpkgs";
|
||||||
|
ref = "nixos-20.09";
|
||||||
|
};
|
||||||
|
|
||||||
|
nixpkgs-unstable = {
|
||||||
|
type = "github";
|
||||||
|
owner = "NixOS";
|
||||||
|
repo = "nixpkgs";
|
||||||
|
ref = "nixos-unstable";
|
||||||
|
};
|
||||||
|
|
||||||
|
emacs-overlay = {
|
||||||
|
type = "github";
|
||||||
|
owner = "nix-community";
|
||||||
|
repo = "emacs-overlay";
|
||||||
|
ref = "master";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, nixpkgs-unstable, emacs-overlay }: {
|
outputs = { self, nixpkgs, nixpkgs-unstable, emacs-overlay }: {
|
||||||
|
|
Loading…
Reference in a new issue