better concatenation of var packages
This commit is contained in:
@@ -28,6 +28,7 @@ let
|
||||
};
|
||||
}
|
||||
);
|
||||
pytensorflow = pkgs.python311.withPackages (ps: [ ps.tensorflow ]);
|
||||
cfg = config.my.servers.nextcloud;
|
||||
cfgC = config.my.servers.collabora;
|
||||
setup = import ./setup.nix { inherit lib config; };
|
||||
@@ -53,20 +54,15 @@ in
|
||||
users.users.nextcloud = {
|
||||
isSystemUser = true;
|
||||
extraGroups = [ "render" ];
|
||||
packages =
|
||||
builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
ffmpeg
|
||||
mediainfo
|
||||
nodejs
|
||||
perl
|
||||
;
|
||||
}
|
||||
++ [
|
||||
exiftool
|
||||
(pkgs.python311.withPackages (ps: [ ps.tensorflow ]))
|
||||
];
|
||||
|
||||
packages = builtins.attrValues {
|
||||
inherit exiftool pytensorflow;
|
||||
inherit (pkgs)
|
||||
ffmpeg
|
||||
mediainfo
|
||||
nodejs
|
||||
perl
|
||||
;
|
||||
};
|
||||
};
|
||||
programs.msmtp = {
|
||||
enable = true;
|
||||
|
||||
Reference in New Issue
Block a user