dotfiles/modules/desktop/apps/default.nix

41 lines
701 B
Nix
Raw Normal View History

2021-09-14 20:55:50 +02:00
{ config, lib, pkgs, ... }:
{
2022-02-15 16:40:23 +01:00
imports = [
./email.nix
./firefox.nix
./kitty.nix
./rofi
./spotify.nix
2022-02-15 16:41:36 +01:00
./xdg-mime.nix
2022-02-15 16:40:23 +01:00
./zathura.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
2022-02-07 14:23:54 +01:00
calibre
2022-03-21 13:22:30 +01:00
gparted
2021-12-12 12:19:54 +01:00
keepassxc
libreoffice
neofetch
pavucontrol
2022-01-21 22:09:18 +01:00
picard
2021-12-12 12:19:54 +01:00
signal-desktop
2022-01-21 22:09:18 +01:00
vlc
2021-12-12 12:19:54 +01:00
xfce.exo
xfce.thunar
xfce.tumbler
xfce.xfconf
];
};
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
}