nix-config/hosts/nixos/aramis/home.nix
Bruno BELANYI e227ad76b2
All checks were successful
ci/woodpecker/push/check Pipeline was successful
hosts: nixos: aramis: home: use 'pinentry-gtk2'
Now that it's available again, let's use it.

This reverts commit 39eba647ac.
2024-01-31 21:41:40 +00:00

35 lines
912 B
Nix

{ pkgs, ... }:
{
my.home = {
# Use graphical pinentry
bitwarden.pinentry = "gtk2";
# Ebook library
calibre.enable = true;
# Some amount of social life
discord.enable = true;
# Image viewver
feh.enable = true;
# Firefo profile and extensions
firefox.enable = true;
# Blue light filter
gammastep.enable = true;
# Use a small popup to enter passwords
gpg.pinentry = "gtk2";
# Machine specific packages
packages.additionalPackages = with pkgs; [
element-desktop # Matrix client
jellyfin-media-player # Wraps the webui and mpv together
pavucontrol # Audio mixer GUI
transgui # Transmission remote
];
# Minimal video player
mpv.enable = true;
# Network-Manager applet
nm-applet.enable = true;
# Terminal
terminal.program = "alacritty";
# Zathura document viewer
zathura.enable = true;
};
}