| { config, lib, pkgs, ... }: {
imports = [ <nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix> ];
boot.zfs.enableUnstable = true;
services.xserver = {
desktopManager.plasma5 = {
enable = true;
enableQt4Support = false;
};
# Enable touchpad support for many laptops.
synaptics.enable = true;
};
environment.systemPackages = with pkgs; [
# Graphical text editor
kate
];
}
|