39 lines
477 B
Nix
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";
|
|
}
|