nix-config/modules/home-manager/extra/default.nix

68 lines
1008 B
Nix

# extra
{ inputs, outputs, lib, config, pkgs, ... }:
{
imports = [
# ./minidisc
../arduino
../browsers
../desktop-river
../drawterm
../gotify
../idasen
../maker
../mpd
../msg
../music
../snapcast
../sound
../syncthing
../theming
../wallets
../wine
];
home.packages = with pkgs; [
# calibre
acpi
android-tools
# pyenv
gimp
john
libreoffice
lxqt.pcmanfm-qt
mpv
# pynitrokey
networkmanagerapplet
nextcloud-client
vagrant
virt-manager
virtiofsd
];
# services.kdeconnect = {
# enable = true;
# indicator = true;
# };
services.gnome-keyring = {
enable = true;
components = [ "secrets" ];
};
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
"autoconnect" = [ "qemu:///system" ];
"uris" = [ "qemu:///system" ];
};
};
}