nixos-configs/configs/gui.nix

32 lines
660 B
Nix
Raw Normal View History

2020-02-21 01:23:10 +01:00
{ config, lib, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
nixpkgs.config.packageOverrides = pkgs: {
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
};
home.packages = with pkgs; [
jetbrains.idea-ultimate
keepassxc
krita
riot-desktop
steam
mpv
mumble
2020-03-04 18:23:56 +01:00
libreoffice-fresh
2020-02-21 01:23:10 +01:00
];
programs.firefox = {
enable = true;
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
keepassxc-browser
ublock-origin
umatrix
cookie-autodelete
dark-night-mode
];
};
services.nextcloud-client.enable = true;
2020-03-04 18:23:56 +01:00
}