dotfiles/modules/desktop/apps/default.nix

31 lines
669 B
Nix
Raw Normal View History

2021-09-14 20:55:50 +02:00
{ config, lib, pkgs, ... }:
{
2021-11-16 20:57:04 +01:00
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ./firefox.nix ];
2021-12-12 12:19:54 +01:00
home-manager.users.moritz = {
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
home.packages = with pkgs; [
anki
keepassxc
libreoffice
neofetch
pavucontrol
signal-desktop
virtualboxWithExtpack
xfce.exo
xfce.thunar
xfce.tumbler
xfce.xfconf
];
};
virtualisation.virtualbox.host.enable = true;
users.extraGroups.vboxusers.members = [ "moritz" ];
2021-10-19 11:58:43 +02:00
services.gvfs = {
enable = true;
package = lib.mkForce pkgs.gnome3.gvfs;
};
2021-09-14 20:55:50 +02:00
}