56 lines
1013 B
Nix
56 lines
1013 B
Nix
{ pkgs, inputs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./base/fonts.nix
|
|
./base/terminal.nix
|
|
./base/mpv.nix
|
|
./firefox/firefox.nix
|
|
];
|
|
|
|
home.packages = with pkgs;[
|
|
# general
|
|
thunderbird
|
|
keepassxc
|
|
qbittorrent
|
|
libreoffice-qt
|
|
inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".joplin-desktop
|
|
|
|
# comms
|
|
teamspeak_client
|
|
discord
|
|
|
|
# media
|
|
strawberry
|
|
];
|
|
|
|
# set breeze as default cursor
|
|
# For cursor in steam?
|
|
home.file.".icons/default".source = "${pkgs.kdePackages.breeze}/share/icons/breeze_cursors";
|
|
|
|
home.file.".npmrc".text = lib.generators.toINIWithGlobalSection { } {
|
|
globalSection = {
|
|
ignore-scripts = "true";
|
|
};
|
|
};
|
|
|
|
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;
|
|
};
|
|
};
|
|
}
|