51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ pkgs, config, lib, ... }:
|
|
with lib; {
|
|
imports = [
|
|
./modules/linux/graphical
|
|
./modules/X11/xfce4-notifyd.nix
|
|
./modules/programs/discord.nix
|
|
];
|
|
config = (mkIf pkgs.stdenv.isLinux {
|
|
home.packages = with pkgs; [
|
|
psmisc # killall and friends
|
|
file # Query file type
|
|
|
|
pinentry-gnome
|
|
] ++ (
|
|
if pkgs.stdenv.isx86_64
|
|
then [
|
|
vivaldi
|
|
mpv # for anki
|
|
pkgs.unstable.anki-bin
|
|
|
|
tdesktop
|
|
whatsapp-for-linux
|
|
]
|
|
else [ ]
|
|
);
|
|
|
|
## Gnome-keyring
|
|
services.gnome-keyring = {
|
|
enable = true;
|
|
components = [ "pkcs11" "secrets" "ssh" ];
|
|
};
|
|
# services.gpg-agent.enable = true;
|
|
# services.gpg-agent.pinentryFlavor = "curses";
|
|
# services.gpg-agent.enableSshSupport = true;
|
|
|
|
# Git "safe-directory"
|
|
programs.git.extraConfig.safe.directory = [
|
|
"${config.home.homeDirectory}/.config/nixpkgs"
|
|
];
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
# Bluetooth controls
|
|
services.mpris-proxy.enable = true;
|
|
|
|
# Owncloud
|
|
services.owncloud-client.enable = true;
|
|
});
|
|
}
|
|
|