This commit is contained in:
2022-10-17 14:36:07 +02:00
commit e1f472a7ed
7 changed files with 358 additions and 0 deletions

25
extra-services.nix Normal file
View File

@@ -0,0 +1,25 @@
{ config, pkgs, ... }:
{
##### sysstat #####
services.sysstat = {
enable = true;
collect-frequency = "*:*:00";
};
###### Virtualisation and Docker #######
virtualisation.libvirtd.enable = true;
programs.dconf.enable = true;
virtualisation.docker.enable = true;
###### Yubikey service #####
services.pcscd.enable = true;
###### NTFS (3G) support ######
boot.supportedFilesystems = [ "ntfs" ];
}