nix-config/hosts/common/optional/pantheon.nix
Greg Burd f3fd89af54
A fork of Misterio77 and his standard template.
Many thangs to the hard work and generous availability of:
git@github.com:Misterio77/nix-config.git
2023-09-15 10:53:38 -04:00

31 lines
655 B
Nix

{
services = {
xserver = {
enable = true;
desktopManager.pantheon = {
enable = true;
};
displayManager.lightdm = {
enable = true;
greeters.pantheon.enable = true;
};
};
pantheon = {
apps.enable = true;
};
geoclue2.enable = true;
};
programs = {
pantheon-tweaks.enable = true;
};
# Fix shutdown taking a long time
# https://gist.github.com/worldofpeace/27fcdcb111ddf58ba1227bf63501a5fe
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
DefaultTimeoutStartSec=10s
'';
services.avahi.enable = false;
networking.networkmanager.enable = false;
}