dotfiles/modules/desktop/apps/default.nix

23 lines
436 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-09-14 20:55:50 +02:00
home-manager.users.moritz.home.packages = with pkgs; [
2021-11-22 11:13:06 +01:00
anki
2021-10-19 11:58:20 +02:00
keepassxc
2021-10-08 20:38:19 +02:00
libreoffice
2021-11-22 11:13:06 +01:00
neofetch
2021-11-29 11:56:18 +01:00
pavucontrol
2021-10-19 11:54:40 +02:00
signal-desktop
2021-11-29 11:56:18 +01:00
virtualboxWithExtpack
2021-11-22 11:13:06 +01:00
xfce.exo
xfce.thunar
xfce.tumbler
xfce.xfconf
2021-09-14 20:55:50 +02:00
];
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
}