temporarily disable media-stack and seafile

This commit is contained in:
Dmitriy Kholkin 2022-10-09 00:19:09 +03:00
parent ec61ceb84f
commit 931cd596c4
2 changed files with 7 additions and 5 deletions

View File

@ -3,19 +3,21 @@
./hardware-configuration.nix
inputs.self.nixosRoles.container
direnv
virtualisation
fail2ban
gitea
joplin-server
mailserver
microbin
nginx
roundcube
seafile
# seafile
vaultwarden
battery-historian
media-stack
# media-stack
duplicacy
];

View File

@ -24,13 +24,13 @@ with config.deviceSpecific; {
};
virtualisation.lxd = {
enable = true;
enable = !isContainer;
zfsSupport = (devInfo.fileSystem == "zfs");
recommendedSysctlSettings = true;
};
virtualisation.lxc = {
enable = true;
lxcfs.enable = true;
enable = !isContainer;
lxcfs.enable = !isContainer;
systemConfig = ''
lxc.lxcpath = /var/lib/lxd/containers
${if devInfo.fileSystem == "zfs" then ''