flake/users/aspire/home-manager.nix

22 lines
635 B
Nix

{ config, pkgs, ... }:
{
home-manager.users.aspire = { pkgs, ... }: {
home.packages = with pkgs; [
kitty # Terminal Emulator
kitty-themes # Kitty Themes
librewolf # Firefox Web Browser Fork
tor-browser-bundle-bin # Privacy Web Browser
mpv # Media Player
#veracrypt # Filesystem Encryption
];
imports = [
../../config/config.nix
../../common/git.nix
../../common/vscodium.nix
];
home.stateVersion = "22.11";
};
}