fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1# This module defines a NixOS configuration with the Plasma 5 desktop.
2# It's used by the graphical installation CD.
3
4{ config, pkgs, ... }:
5
6{
7 services.xserver = {
8 enable = true;
9 displayManager.sddm.enable = true;
10 desktopManager.plasma5.enable = true;
11 synaptics.enable = true; # for touchpad support on many laptops
12 };
13
14 environment.systemPackages = [ pkgs.glxinfo ];
15}