nixos-configs/configs/home/gui.nix
Paul-Henri Froidmont b43c58c514 Improve Ubuntu config
2020-10-11 20:38:01 +02:00

22 lines
427 B
Nix

{ config, lib, pkgs, ... }:
{
nixpkgs.config.packageOverrides = pkgs: {
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
};
home.packages = with pkgs; [
firefox
keepassxc
krita
element-desktop
mpv
mumble
libreoffice-fresh
slack
thunderbird
zoom-us
];
services.nextcloud-client.enable = true;
}