Add GUI configuration

This commit is contained in:
2020-04-22 22:13:03 +02:00
parent 9f39802d28
commit 4386ea7477
2 changed files with 70 additions and 0 deletions

View File

@@ -51,9 +51,23 @@
# Allow propietary software
nixpkgs.config.allowUnfree = true;
# Scrub zpool monthly
services.zfs.autoScrub = {
enable = true;
interval = "monthly";
};
# Set timezone and synchronize NTP
time.timeZone = "Europe/Brussels";
services.timesyncd.enable = true;
# Enable the TLP daemon
services.tlp.enable = true;
# Import other configuration modules
imports = [
./modules/networking.nix
./modules/gui.nix
];
}