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

76 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2023-08-13 12:30:14 +02:00
# extra
{ inputs, outputs, lib, config, pkgs, ... }:
{
imports = [
# ./minidisc
../arduino
../browsers
../dav
2023-08-13 12:30:14 +02:00
../desktop-river
../drawterm
../foot
2023-08-13 12:30:14 +02:00
../gotify
../idasen
../mail
2023-08-13 12:30:14 +02:00
../maker
../mpd
../mpd
2023-08-13 12:30:14 +02:00
../msg
../music
../rss
2023-08-13 12:30:14 +02:00
../sound
../syncthing
../theming
../wallets
../wine
];
home.packages = with pkgs; [
# calibre
# pyenv
# pynitrokey
inputs.agenix.packages.x86_64-linux.default
age-plugin-yubikey
2023-08-13 12:30:14 +02:00
acpi
android-tools
gimp
john
libnotify
2023-08-13 12:30:14 +02:00
libreoffice
lxqt.pcmanfm-qt
mpv
networkmanagerapplet
nextcloud-client
vagrant
virt-manager
virtiofsd
wl-clipboard
2023-08-13 12:30:14 +02:00
];
# 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" ];
};
};
}