38 lines
714 B
Nix
38 lines
714 B
Nix
{ inputs, config, lib, pkgs, ... }:
|
|
|
|
# TODO: split into multiple files
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
telegram-desktop
|
|
vscode
|
|
spotify
|
|
obsidian
|
|
# lmstudio
|
|
plantuml
|
|
# amnezia-vpn
|
|
btop
|
|
python312
|
|
python312Packages.virtualenv
|
|
python312Packages.pip
|
|
libreoffice
|
|
imagemagick
|
|
wl-clipboard
|
|
tesseract
|
|
syncthing
|
|
todo
|
|
pass
|
|
# yubikey-manager-qt
|
|
];
|
|
|
|
services.syncthing = { enable = true; };
|
|
|
|
# do i really need it?
|
|
programs.direnv.enable = true;
|
|
programs.direnv.nix-direnv.enable = true;
|
|
programs.direnv.enableZshIntegration = true;
|
|
|
|
imports = [ inputs.zen-browser.homeModules.twilight ];
|
|
programs.zen-browser = { enable = true; };
|
|
}
|