25 lines
405 B
Nix
25 lines
405 B
Nix
{ 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" ];
|
|
} |