better concatenation of var packages
This commit is contained in:
parent
a9edd30f02
commit
8497c3fa69
@ -112,9 +112,8 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
programs.geary.enable = true;
|
programs.geary.enable = true;
|
||||||
users.users.jawz.packages =
|
users.users.jawz.packages = builtins.attrValues {
|
||||||
[ krisp-patcher ]
|
inherit krisp-patcher;
|
||||||
++ builtins.attrValues {
|
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
thunderbird # email client
|
thunderbird # email client
|
||||||
warp # transfer files with based ppl
|
warp # transfer files with based ppl
|
||||||
|
|||||||
@ -20,9 +20,8 @@ let
|
|||||||
;
|
;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
packages =
|
packages = builtins.attrValues {
|
||||||
[ python ]
|
inherit python;
|
||||||
++ builtins.attrValues {
|
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
pipenv # python development workflow for humans
|
pipenv # python development workflow for humans
|
||||||
pyright # LSP
|
pyright # LSP
|
||||||
|
|||||||
@ -28,6 +28,7 @@ let
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
pytensorflow = pkgs.python311.withPackages (ps: [ ps.tensorflow ]);
|
||||||
cfg = config.my.servers.nextcloud;
|
cfg = config.my.servers.nextcloud;
|
||||||
cfgC = config.my.servers.collabora;
|
cfgC = config.my.servers.collabora;
|
||||||
setup = import ./setup.nix { inherit lib config; };
|
setup = import ./setup.nix { inherit lib config; };
|
||||||
@ -53,20 +54,15 @@ in
|
|||||||
users.users.nextcloud = {
|
users.users.nextcloud = {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
extraGroups = [ "render" ];
|
extraGroups = [ "render" ];
|
||||||
packages =
|
packages = builtins.attrValues {
|
||||||
builtins.attrValues {
|
inherit exiftool pytensorflow;
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
ffmpeg
|
ffmpeg
|
||||||
mediainfo
|
mediainfo
|
||||||
nodejs
|
nodejs
|
||||||
perl
|
perl
|
||||||
;
|
;
|
||||||
}
|
};
|
||||||
++ [
|
|
||||||
exiftool
|
|
||||||
(pkgs.python311.withPackages (ps: [ ps.tensorflow ]))
|
|
||||||
];
|
|
||||||
|
|
||||||
};
|
};
|
||||||
programs.msmtp = {
|
programs.msmtp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user