Bruno BELANYI
2fb3d0f9cf
This will be more consistent in the future if I want to introduce darwin or home-manager configurations.
32 lines
836 B
Nix
32 lines
836 B
Nix
{ pkgs, ... }:
|
|
{
|
|
my.home = {
|
|
# 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
|
|
quasselClient # IRC client
|
|
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;
|
|
};
|
|
}
|