nixos-config/modules/workstation/home-manager/default.nix

71 lines
1.2 KiB
Nix
Raw Normal View History

{ pkgs, lib, ... }:
with lib;
let
multimediaPackages = with pkgs; [
qpwgraph
feh
gimp
vlc
];
soundPackages = with pkgs; [
pavucontrol
pamixer
];
yubikeyTools = with pkgs; [
yubikey-personalization
yubico-pam
yubikey-manager
];
in
{
imports = [
./desktop
./development
./fish.nix
./gpg.nix
./communication.nix
./mail.nix
2024-02-10 14:19:30 +01:00
./helix.nix
2024-08-02 23:44:40 +02:00
./games.nix
];
config = {
fonts.fontconfig.enable = true;
2024-04-11 20:15:47 +02:00
home.packages =
with pkgs;
[
htop
firefox
autojump
nextcloud-client
keepassxc
ranger
libreoffice
tldr
zathura
lazygit
easyeffects
]
++ multimediaPackages
++ soundPackages
++ yubikeyTools;
# XDG-Mime configuration
xdg.mime.enable = true;
xdg.mimeApps.enable = true;
xdg.mimeApps.associations.added = {
"x-scheme-handler/https" = "firefox.desktop";
"x-scheme-handler/http" = "firefox.desktop";
};
xdg.mimeApps.defaultApplications = {
"x-scheme-handler/https" = "firefox.desktop";
"x-scheme-handler/http" = "firefox.desktop";
"text/html" = "firefox.desktop";
};
};
}