mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
32 lines
533 B
Nix
32 lines
533 B
Nix
{ pkgs, ... }:
|
|
let
|
|
packageNames = [
|
|
"pass-fuzzel"
|
|
"cura5"
|
|
"hm-specialisation"
|
|
"cdw"
|
|
"cdb"
|
|
"bak"
|
|
"timer"
|
|
"e"
|
|
"swarselcheck"
|
|
"waybarupdate"
|
|
"opacitytoggle"
|
|
"fs-diff"
|
|
"update-checker"
|
|
"github-notifications"
|
|
"screenshare"
|
|
"bootstrap"
|
|
"swarsel-install"
|
|
"t2ts"
|
|
"ts2t"
|
|
"vershell"
|
|
];
|
|
mkPackages = names: builtins.listToAttrs (map
|
|
(name: {
|
|
inherit name;
|
|
value = pkgs.callPackage ./${name} { };
|
|
})
|
|
names);
|
|
in
|
|
mkPackages packageNames
|