mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
Enable nextcloud on clients
This commit is contained in:
parent
92147e220b
commit
fd745cceb6
2 changed files with 12 additions and 0 deletions
11
modules/home/nextcloud.nix
Normal file
11
modules/home/nextcloud.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, lib, ... }:
|
||||||
|
{
|
||||||
|
options.myConfig.nextcloud.enable = lib.mkEnableOption "";
|
||||||
|
|
||||||
|
config = lib.mkIf config.myConfig.nextcloud.enable {
|
||||||
|
services.nextcloud-client = {
|
||||||
|
enable = true;
|
||||||
|
startInBackground = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
git.enable = true;
|
git.enable = true;
|
||||||
vscode.enable = true;
|
vscode.enable = true;
|
||||||
equalizer.enable = true;
|
equalizer.enable = true;
|
||||||
|
nextcloud.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue