Files
2025-07-25 10:24:08 +02:00

39 lines
477 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./fonts.nix
];
environment.systemPackages = with pkgs; [
# browsers
brave
firefox
chromium
thunderbird
# misc
zotero
evince
pcmanfm
krusader
# graphic and image stuff
gimp
nomacs
# video playing
vlc
mpv
qbittorrent
nextcloud-client
];
# Enable CUPS to print documents.
services.printing.enable = true;
location.provider = "geoclue2";
}