32 lines
588 B
Nix
32 lines
588 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./email.nix ./firefox.nix ./kitty.nix ./rofi ./zathura.nix ];
|
|
home-manager.users.moritz = {
|
|
services.nextcloud-client = {
|
|
enable = true;
|
|
startInBackground = true;
|
|
};
|
|
home.packages = with pkgs; [
|
|
anki
|
|
calibre
|
|
gparted
|
|
keepassxc
|
|
libreoffice
|
|
neofetch
|
|
pavucontrol
|
|
picard
|
|
signal-desktop
|
|
vlc
|
|
xfce.exo
|
|
xfce.thunar
|
|
xfce.tumbler
|
|
xfce.xfconf
|
|
];
|
|
};
|
|
services.gvfs = {
|
|
enable = true;
|
|
package = lib.mkForce pkgs.gnome3.gvfs;
|
|
};
|
|
}
|