Remove duplicate nixpkgs import from path

This commit is contained in:
Tim Schubert 2021-01-02 10:12:04 +01:00
parent f0c1441230
commit e0c49cfc27
No known key found for this signature in database
GPG key ID: 99658A3EB5CD7C13
4 changed files with 10 additions and 6 deletions

View file

@ -1,9 +1,9 @@
{ config, pkgs, lib, ... }:
let
hostName = "surgat";
this = import ../.. {};
this = import ../.. { inherit pkgs; };
keys = ../../pkgs/keys/keys;
homePage = self: super: { homePage = super.callPackage ../../pkgs/homePage {}; };
homePage = self: super: { homePage = super.callPackage ../../pkgs/homePage { }; };
in {
imports = [ this.profiles.base ];