This commit is contained in:
Tim Schubert 2021-06-02 21:38:52 +02:00
parent 2dcf9e12a7
commit 9b8bb5e88d
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
10 changed files with 41 additions and 43 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, unstable, lib, ... }:
{ config, pkgs, lib, ... }:
let
this = import ../../.. { inherit pkgs; };
useFeatures = [
@ -16,7 +16,6 @@ let
"xdg"
"zsh"
];
unstable = import <nixpkgs-unstable> {};
in
{
nixpkgs.overlays = [
@ -60,5 +59,5 @@ in
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
home.packages = import ./pkgs.nix { pkgs = pkgs; unstable = unstable; };
home.packages = import ./pkgs.nix { inherit pkgs; };
}