flake/users/leeuwarden/home-manager.nix

36 lines
1.3 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
home-manager.users.leeuwarden = { pkgs, ... }: {
2023-03-12 06:18:53 +01:00
home.packages = with pkgs; [
2023-03-20 22:48:17 +01:00
armcord # Discord Client
2023-03-19 18:06:46 +01:00
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
2023-03-20 22:48:17 +01:00
mumble # Low-Latency, High Quality Voice Chat
2023-03-19 18:06:46 +01:00
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
2023-03-12 06:18:53 +01:00
];
2023-03-25 23:20:47 +01:00
imports = [
../../common/vscodium.nix
2023-03-25 23:26:20 +01:00
../../common/git.nix
2023-03-25 23:20:47 +01:00
../../config/config.nix
];
2023-03-12 06:18:53 +01:00
2023-03-25 22:24:41 +01:00
home.stateVersion = "22.05";
2023-03-25 23:30:29 +01:00
};
}