Merge remote-tracking branch 'origin/nixos' into nixos

This commit is contained in:
Moritz Böhme 2023-04-26 14:30:27 +02:00
commit 56044695df
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
3 changed files with 13 additions and 6 deletions

View file

@ -48,7 +48,6 @@ with lib; {
pavucontrol
stable.libreoffice # HACK to fix build error
stable.signal-desktop
synology-drive-client
texlive.combined.scheme-full
thunderbird
vlc

View file

@ -1,4 +1,4 @@
{ lib, ... }:
{ lib, pkgs, ... }:
with lib;
{
@ -57,4 +57,8 @@ with lib;
};
};
};
environment.systemPackages = with pkgs; [
synology-drive-client
];
}