Skip to content

Commit

Permalink
flake: switch to nixpkgs master for additional home-manager options
Browse files Browse the repository at this point in the history
  • Loading branch information
Pacman99 committed Mar 14, 2021
1 parent c012f2f commit c6bf833
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
20 changes: 9 additions & 11 deletions flake.lock

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

8 changes: 6 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

inputs =
{
nixos.url = "nixpkgs/release-20.09";
nixos.url = "nixpkgs";
override.url = "nixpkgs";
ci-agent = {
url = "github:hercules-ci/hercules-ci-agent";
Expand All @@ -18,7 +18,7 @@
devshell.url = "github:numtide/devshell";
flake-compat.url = "github:BBBSnowball/flake-compat/pr-1";
flake-compat.flake = false;
home.url = "github:nix-community/home-manager/release-20.09";
home.url = "github:nix-community/home-manager/master";
home.inputs.nixpkgs.follows = "nixos";
naersk.url = "github:nmattia/naersk";
naersk.inputs.nixpkgs.follows = "override";
Expand Down Expand Up @@ -52,6 +52,10 @@
let moduleList = import ./modules/module-list.nix;
in lib.pathsToImportedAttrs moduleList;

homeModules =
let moduleList = import ./users/modules/module-list.nix;
in lib.pathsToImportedAttrs moduleList;

overlay = import ./pkgs;
overlays = lib.pathsToImportedAttrs (lib.pathsIn ./overlays);

Expand Down

0 comments on commit c6bf833

Please sign in to comment.