mio-ops/profiles/pantheon.nix

25 lines
499 B
Nix
Raw Normal View History

2024-05-22 11:45:00 +00:00
# Configuration for my pantheon desktop requirements
{
config,
pkgs,
...
}: {
services = {
pantheon = {
apps.enable = true;
contractor.enable = true;
};
xserver = {
enable = true; # Enable the X11 windowing system.
desktopManager = {
pantheon.enable = true;
};
libinput.enable = true; # Enable touchpad support.
};
};
programs = {
dconf.enable = true;
pantheon-tweaks.enable = true; # additional system settings
};
}