Some checks failed
Flake checker / Build Nix targets (push) Failing after 11s
feat(zed): conditional zed-editor enablement based on device type
14 lines
216 B
Nix
14 lines
216 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.nextcloud-client = {
|
|
enable = pkgs.stdenv.isLinux;
|
|
startInBackground = true;
|
|
};
|
|
home.packages = lib.optionals pkgs.stdenv.isLinux [
|
|
pkgs.nextcloud-client
|
|
];
|
|
}
|