Changed: Modules

This commit is contained in:
2025-04-03 12:50:08 +02:00
parent 775737fd18
commit b84ca8ac24
13 changed files with 218 additions and 173 deletions

15
modules/services.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
services = {
dbus.packages = [pkgs.gcr];
geoclue2.enable = true;
udev.packages = with pkgs; [gnome.gnome-settings-daemon];
# Enable CUPS to print documents.
printing.enable = true;
power-profiles-daemon.enable = true;
};
}