49 lines
780 B
Nix
49 lines
780 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./base/fonts.nix
|
|
./base/terminal.nix
|
|
./base/mpv.nix
|
|
./firefox/firefox.nix
|
|
];
|
|
|
|
home.packages = with pkgs;[
|
|
# general
|
|
thunderbird
|
|
keepassxc
|
|
qbittorrent
|
|
libreoffice-qt
|
|
joplin-desktop
|
|
|
|
# comms
|
|
teamspeak_client
|
|
discord
|
|
|
|
# media
|
|
strawberry
|
|
];
|
|
|
|
# set breeze as default cursor
|
|
home.file.".icons/default".source = "${pkgs.kdePackages.breeze}/share/icons/breeze_cursors";
|
|
|
|
home.sessionVariables = {
|
|
NIXOS_OZONE_WL = "1";
|
|
};
|
|
|
|
services.nextcloud-client = {
|
|
enable = true;
|
|
package = pkgs.nextcloud-client;
|
|
startInBackground = true;
|
|
};
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
|
|
chromium = {
|
|
enable = true;
|
|
package = pkgs.brave;
|
|
};
|
|
};
|
|
}
|