nixos-vm-2023-06-03-13-21-06

This commit is contained in:
Alexander Szczepanski
2023-06-03 13:21:06 +02:00
parent ad2cd43984
commit 79ac0b0715
4 changed files with 68 additions and 53 deletions

25
configs/pantheon.nix Normal file
View File

@ -0,0 +1,25 @@
{ config, pkgs, lib, ... }:
{
programs.pantheon-tweaks.enable = true;
programs.evolution.enable = true;
services = {
xserver = {
enable = true;
displayManager = {
lightdm = {
enable = true;
greeters.pantheon.enable = true;
};
};
desktopManager.pantheon.enable = true;
layout = "us";
# Enable touchpad support.
libinput.enable = true;
updateDbusEnvironment = true;
};
};
}