mio-ops/profiles/pantheon.nix

25 lines
497 B
Nix
Raw Normal View History

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