Skip to content

Commit

Permalink
Update inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
kip93 committed Feb 24, 2024
1 parent 9c9aedf commit 00551be
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 172 deletions.
162 changes: 53 additions & 109 deletions flake.lock

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

71 changes: 27 additions & 44 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file is part of Nix++.
# Copyright (C) 2023 Leandro Emmanuel Reina Kiperman.
# Copyright (C) 2023-2024 Leandro Emmanuel Reina Kiperman.
#
# Nix++ is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
Expand All @@ -20,23 +20,44 @@
'';

inputs = {
nixpkgs = {
url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz";
};
home-manager = {
url = "https://flakehub.com/f/nix-community/home-manager/*.tar.gz";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};

hydra = {
url = "github:NixOS/hydra/nix-2.20"; # Keep in sync! (See hydra#1182)
inputs = {
nixpkgs.follows = "nixpkgs";
nix.follows = "nix";
};
};
nix = {
url = "https://flakehub.com/f/NixOS/nix/2.20.*.tar.gz";
inputs = {
flake-compat.follows = "flake-compat";
nixpkgs.follows = "nixpkgs";
};
};

agenix = {
url = "https://flakehub.com/f/ryantm/agenix/0.14.*.tar.gz";
url = "https://flakehub.com/f/ryantm/agenix/*.tar.gz";
inputs = {
home-manager.follows = "home-manager";
nixpkgs.follows = "nixpkgs";
};
};
devenv = {
url = "github:cachix/devenv/main";
# TODO devenv#745
# url = "github:cachix/devenv/python-rewrite";
inputs = {
flake-compat.follows = "flake-compat";
nix.follows = "nix";
nixpkgs.follows = "nixpkgs";
# TODO devenv#745
# poetry2nix.follows = "poetry2nix";
pre-commit-hooks.follows = "pre-commit-hooks";
};
};
Expand Down Expand Up @@ -70,54 +91,16 @@
nixpkgs.follows = "nixpkgs";
};
};
home-manager = {
url = "https://flakehub.com/f/nix-community/home-manager/*.tar.gz";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
hydra = {
url = "github:NixOS/hydra/master";
inputs = {
nixpkgs.follows = "nixpkgs";
# nix.follows = "nix"; # DON'T! See hydra#1182
};
};
impermanence = {
url = "github:nix-community/impermanence/master";
};
# microvm-nix = {
# url = "github:astro/microvm.nix/main";
# inputs = {
# flake-utils.follows = "flake-utils";
# nixpkgs.follows = "nixpkgs";
# };
# };
nix = {
url = "github:NixOS/nix/latest-release";
inputs = {
flake-compat.follows = "flake-compat";
nixpkgs.follows = "nixpkgs";
};
};
nixos-artwork = {
url = "github:NixOS/nixos-artwork/master";
flake = false;
};
nixos-hardware = {
url = "github:NixOS/nixos-hardware/master";
};
nixpkgs = {
url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz";
};
# TODO devenv#745
# poetry2nix = {
# url = "github:nix-community/poetry2nix/master";
# inputs = {
# flake-utils.follows = "flake-utils";
# nixpkgs.follows = "nixpkgs";
# };
# };
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix/master";
inputs = {
Expand Down
Loading

0 comments on commit 00551be

Please sign in to comment.