vps: fix infinite recursion error
This commit is contained in:
parent
f0dee85621
commit
8f6e2b9ce2
2 changed files with 12 additions and 1 deletions
|
@ -6,6 +6,9 @@
|
||||||
with prev.lib; let
|
with prev.lib; let
|
||||||
inherit (final) callPackage fetchpatch;
|
inherit (final) callPackage fetchpatch;
|
||||||
in {
|
in {
|
||||||
|
|
||||||
|
homepage = flakes.homepage.packages.${final.system}.default;
|
||||||
|
|
||||||
override =
|
override =
|
||||||
{
|
{
|
||||||
# add python modules here to make them available in all versions
|
# add python modules here to make them available in all versions
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
flakes,
|
flakes,
|
||||||
modulesPath,
|
modulesPath,
|
||||||
|
doctrine,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib; {
|
with lib; {
|
||||||
|
@ -40,7 +41,14 @@ with lib; {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
|
|
||||||
extraSpecialArgs = {inherit flakes;};
|
extraSpecialArgs = {
|
||||||
|
inherit flakes;
|
||||||
|
doctrine = flakes.trivionomicon.lib.mkDoctrine {
|
||||||
|
inherit pkgs;
|
||||||
|
inherit (doctrine) prefix;
|
||||||
|
namespace = "home";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
users.fabian = {
|
users.fabian = {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue