flake/users/zonsopkomst/home-manager.nix

78 lines
3.4 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; [
2023-03-29 19:58:48 +02:00
asciiquarium # Terminal Aquarium
armcord # Discord Client
bash-completion # Bash Autocomplete
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
element-desktop # Matrix Client
easytag # Music Tag Editor
freetube # YouTube Front-End
fzf # Fuzzy Finder in GO
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
nix-bash-completions # Bash Autocomplete
nms # Effect from 1992 Movie Sneakers
2023-05-03 22:32:29 +02:00
nomachine-client # NoMachine remote desktop client (nxplayer)
2023-03-29 19:58:48 +02:00
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
2023-04-18 04:49:47 +02:00
ventoy # USB Boot App
2023-03-29 19:58:48 +02:00
veracrypt # Filesystem Encryption
2023-06-30 06:52:38 +02:00
#waybar
2023-03-29 19:58:48 +02:00
wbg
wofi
2023-04-03 06:09:10 +02:00
xiphos # Bible Study Tool
2023-03-29 19:58:48 +02:00
xorg.xkill # Kill Windows w/ Mouse
2023-03-25 23:09:33 +01:00
];
2023-03-14 03:11:05 +01:00
2023-03-25 23:30:29 +01:00
imports = [
2023-06-28 06:55:32 +02:00
../../common/emacs.nix
2023-03-25 23:30:29 +01:00
../../common/git.nix
2023-06-28 06:55:32 +02:00
../../common/vscodium.nix
2023-03-25 23:30:29 +01:00
../../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
}