Update
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{ pkgs, config, ... }:
|
||||
let variable = import ../../variables.nix;
|
||||
in {
|
||||
imports = [ ./hardware-configuration.nix ./openssh.nix ];
|
||||
imports = [ ./hardware-configuration.nix ./openssh.nix ./nextcloud.nix ];
|
||||
|
||||
boot = {
|
||||
loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
8
hosts/server/nextcloud.nix
Normal file
8
hosts/server/nextcloud.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }: {
|
||||
services.nextcloud = {
|
||||
enable = true;
|
||||
package = pkgs.nextcloud28;
|
||||
hostName = "localhost";
|
||||
config.adminpassFile = "/home/hadi/nextcloud/pwd";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user