21 lines
287 B
Nix
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";
|
|
}
|