flake/users/leeuwarden/home-manager.nix
2023-03-25 17:30:29 -05:00

36 lines
1.3 KiB
Nix

{ config, pkgs, ... }:
{
home-manager.users.leeuwarden = { pkgs, ... }: {
home.packages = with pkgs; [
armcord # Discord Client
bash-completion # Bash Autocomplete
cbonsai # Terminal Bonsai Tree
genact # Nonsense Activity Generator
hollywood # Hollywood Melodrama Technobabble
kitty # Terminal
kitty-themes # Kitty Terminal Themes
librewolf # Firefox Web Browser Fork
mpv # Media Player
mumble # Low-Latency, High Quality Voice Chat
neo # Matrix Digital Rain
neofetch # System Information
nitch # Nim System Fetch
nix-bash-completions # Bash Autocomplete
nms # Effect from 1992 Movie Sneakers
pipes # Animated Pipes Terminal Screensaver
qbittorrent # Torrent Application
tor-browser-bundle-bin # Privacy Web Browser
veracrypt # Filesystem Encryption
vscodium # Code Editor
];
imports = [
../../common/vscodium.nix
../../common/git.nix
../../config/config.nix
];
home.stateVersion = "22.05";
};
}