2023-04-04 09:58:29 +05:30
|
|
|
{ pkgs, ... }: {
|
|
|
|
imports = [
|
|
|
|
./dev.nix
|
2023-04-04 10:05:59 +05:30
|
|
|
./downloader.nix
|
2023-04-04 09:58:29 +05:30
|
|
|
./firefox.nix
|
|
|
|
./kitty.nix
|
2023-04-04 10:06:31 +05:30
|
|
|
./media.nix
|
2023-04-04 09:58:29 +05:30
|
|
|
./nixvim.nix
|
|
|
|
./tmux.nix
|
|
|
|
./tui.nix
|
|
|
|
./virt-manager.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
_1password-gui
|
|
|
|
brightnessctl
|
|
|
|
discord
|
|
|
|
evince
|
|
|
|
gnome.eog
|
|
|
|
gnome.gnome-system-monitor
|
|
|
|
gnome3.gnome-disk-utility
|
|
|
|
libsecret
|
|
|
|
pantheon.elementary-files
|
|
|
|
pavucontrol
|
|
|
|
xdg-utils
|
|
|
|
yubioath-flutter
|
|
|
|
yubikey-manager
|
|
|
|
yubikey-manager-qt
|
|
|
|
yubikey-personalization
|
|
|
|
yubikey-personalization-gui
|
|
|
|
];
|
|
|
|
|
|
|
|
programs = {
|
|
|
|
gpg = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
keyserver = "hkps://keys.openpgp.org";
|
|
|
|
};
|
|
|
|
scdaemonSettings = {
|
|
|
|
disable-ccid = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
ssh = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|