flake/users/aspire/home-manager.nix

28 lines
976 B
Nix

{ config, pkgs, ... }:
{
home-manager.users.aspire = { pkgs, ... }: {
home.packages = with pkgs; [
borgbackup # Deduplicating archiver with compression and encryption
czkawka # Duplicate file finder
dupeguru # Duplicate file finder
#duplicati # Backup Data
kitty # Terminal Emulator
kitty-themes # Kitty Themes
librewolf # Firefox Web Browser Fork
tor-browser-bundle-bin # Privacy Web Browser
nomacs # Qt-based image viewer
mpv # Media Player
#veracrypt # Filesystem Encryption
];
imports = [
../../config/config.nix
../../common/git.nix
../../common/vscodium.nix
];
home.stateVersion = "23.05";
};
}