25 lines
499 B
Nix
25 lines
499 B
Nix
|
# 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
|
||
|
};
|
||
|
}
|