flake/users/zonsopkomst/home-manager.nix

77 lines
3.5 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2023-03-19 20:18:11 +01:00
home-manager.users.zonsopkomst = { pkgs, ... }: {
2023-03-25 23:09:33 +01:00
home.packages = with pkgs; [
asciiquarium # Terminal Aquarium
adobe-reader # PDF Reader (for government forms mainly)
armcord # Discord Client
2023-03-25 23:30:29 +01:00
bash-completion # Bash Autocomplete
2023-03-25 23:09:33 +01:00
bibletime # Bible Study Tool
bleachbit # PC Cleaner
calibre # eBook Library
cbonsai # Terminal Bonsai Tree
xcowsay # Graphical Cowsay
crow-translate # Language Translator
dconf2nix # Nixify Gnome Config File
dunst # Notification Daemon
dino # XMPP Client
discord # Discord Client
element-desktop # Matrix Client
easytag # Music Tag Editor
freetube # YouTube Front-End
gImageReader # Tesseract-OCR Front-End
genact # Nonsense Activity Generator
gnucash # Double Entry Accounting Software
gpodder # Podcast Manager
gretl # Econometric Analysis
grim
gzdoom
hollywood # Hollywood Melodrama Technobabble
hyprpaper
josm # Extensible editor for OpenStreetMap
kitty # Terminal Emulator
kitty-themes # Kitty Themes
keepassxc # GUI Password Manager with Cryptography
librewolf # Firefox Web Browser Fork
libsForQt5.kolourpaint # Painting Application
libsForQt5.k3b # Disk Burning Application
mpv # Media Player
neo # Matrix Digital Rain
nitch # Nim System Fetch
2023-03-25 23:30:29 +01:00
nix-bash-completions # Bash Autocomplete
2023-03-25 23:09:33 +01:00
nms # Effect from 1992 Movie Sneakers
onlyoffice-bin # Office Suite
p7zip # File Archiver
pdfarranger # PDF Arranger
pipes
qbittorrent # Torrent Application
qgis # A Free and Open Source Geographic Information System
ranger
retroarchFull # Multi-Platform Emulator
smplayer # Media Player
solaar # Logitech Unifying Receiver
strawberry # Media Player
rofi
rstudioWrapper
slurp # screenshot
speedcrunch
tor-browser-bundle-bin # Privacy Web Browser
ventoy-bin # USB Boot App
veracrypt # Filesystem Encryption
waybar
wbg
wofi
xorg.xkill # Kill Windows w/ Mouse
];
2023-03-14 03:11:05 +01:00
2023-03-25 23:30:29 +01:00
imports = [
../../common/vscodium.nix
../../common/git.nix
../../config/config.nix
];
2023-02-14 22:00:19 +01:00
2023-03-25 23:30:29 +01:00
home.stateVersion = "22.11";
};
2023-03-19 22:37:52 +01:00
}