52 lines
803 B
Nix
52 lines
803 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
./aria2.nix
|
|
./bat.nix
|
|
./btop.nix
|
|
./direnv.nix
|
|
./eza.nix
|
|
./files.nix
|
|
./firefox.nix
|
|
./git.nix
|
|
./gnupg.nix
|
|
./kitty.nix
|
|
./mpv.nix
|
|
./neovim
|
|
./ssh.nix
|
|
./starship.nix
|
|
./tmux.nix
|
|
./virt-manager.nix
|
|
./yt-dlp.nix
|
|
./zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
_1password-gui
|
|
discord
|
|
doctl
|
|
evince
|
|
flyctl
|
|
gh
|
|
git-crypt
|
|
gnome-secrets
|
|
gnome.eog
|
|
gnome.gnome-system-monitor
|
|
gnome3.gnome-disk-utility
|
|
nixpkgs-review
|
|
nix-init
|
|
nurl
|
|
pavucontrol
|
|
ripgrep
|
|
spotify-player
|
|
wl-clipboard
|
|
xdg-utils
|
|
yubioath-flutter
|
|
];
|
|
|
|
programs = {
|
|
fzf.enable = true;
|
|
lazygit.enable = true;
|
|
nix-index.enable = true;
|
|
zoxide.enable = true;
|
|
};
|
|
}
|