Added webdav module that just works with the new server setup

This commit is contained in:
2025-08-31 04:55:23 +02:00
parent c977edbcb2
commit 7a7b3315d0
4 changed files with 61 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, config, inputs, ... }:
{
imports = [
@@ -8,7 +8,10 @@
./../../modules/common.nix
./../../modules/hardware/xremap.nix
./../../modules/hardware/nvidia.nix
./../../modules/services/webdav.nix
#./../../modules/hardware/nvidia.nix
inputs.sops-nix.nixosModules.sops
];
networking.hostName = "minoxy";
@@ -21,12 +24,6 @@
systemd.targets.sleep.enable = true;
systemd.targets.suspend.enable = true;
environment.systemPackages = with pkgs; [
(blender.override {
cudaSupport = true;
})
];
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";