nix/modules/home-manager/default.nix

39 lines
601 B
Nix

with builtins;
listToAttrs (map (name: {
name = name;
value = import ./${name}.nix;
}) [
"bat"
"broot"
"cargo"
"common"
"desktop"
"ewwbar"
"firefox"
"firefox-no-tabs"
"fish"
"git"
"gnome"
"helix"
"htop"
"hyprland"
"iex"
"kitty"
"linux"
"linux-desktop"
"macos"
"mako"
"melee"
"nnn"
"pass"
"senpai"
"sway"
"sway-laptop"
"swaylock"
"tmux"
"wallpaper-manager"
"waybar"
"wezterm"
"zellij"
])