Files
nixos/system/modules/desktop_tools.nix
T
2025-07-14 15:12:21 +02:00

21 lines
287 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./fonts.nix
];
environment.systemPackages = with pkgs; [
# browsers
brave
firefox
chromium
# misc
];
# Enable CUPS to print documents.
services.printing.enable = true;
location.provider = "geoclue2";
}