Sun Aug 14 06:35:44 PM CEST 2022

This commit is contained in:
Alexander Szczepanski
2022-08-14 18:35:44 +02:00
parent 6d9f59e21b
commit 6a5607ed9c
9 changed files with 30 additions and 10 deletions

23
backup/pantheon.nix Normal file
View File

@ -0,0 +1,23 @@
{ config, pkgs, lib, ... }:
{
programs.pantheon-tweaks.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;
};
};
}