pantheon: initial commit

This commit is contained in:
Serĉanto de Scio 2024-05-22 21:45:00 +10:00
parent 92f4dc765e
commit a221cd55d8
Signed by: sercanto
GPG key ID: A4122FF3971B6865

24
profiles/pantheon.nix Normal file
View file

@ -0,0 +1,24 @@
# 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
};
}