.dotfiles/modules/home/common/custom-packages.nix
Leon Schwarzäugl 355cf03bd1
Some checks failed
Flake check / Check flake (push) Has been cancelled
chore: flake maintenance
2025-09-24 13:09:54 +02:00

37 lines
713 B
Nix

{ lib, config, pkgs, ... }:
{
options.swarselmodules.ownpackages = lib.mkEnableOption "own packages settings";
config = lib.mkIf config.swarselmodules.ownpackages {
home.packages = with pkgs; lib.mkIf (!config.swarselsystems.isPublic) [
pass-fuzzel
cdw
cdb
bak
timer
e
swarselcheck
swarselcheck-niri
waybarupdate
opacitytoggle
fs-diff
github-notifications
hm-specialisation
t2ts
ts2t
vershell
eontimer
project
fhs
swarsel-bootstrap
swarsel-displaypower
swarsel-deploy
swarsel-instantiate
swarselzellij
sshrm
endme
rustdesk-vbc
];
};
}