nix/modules/home-manager/default.nix

39 lines
601 B
Nix
Raw Normal View History

2024-01-04 17:20:02 -06:00
with builtins;
listToAttrs (map (name: {
name = name;
value = import ./${name}.nix;
}) [
2024-01-05 13:23:43 -06:00
"bat"
"broot"
2024-01-04 17:20:02 -06:00
"cargo"
2024-01-05 13:23:43 -06:00
"common"
"desktop"
"ewwbar"
"firefox"
2024-01-24 22:02:50 -06:00
"firefox-no-tabs"
2024-01-05 13:23:43 -06:00
"fish"
2024-01-04 17:20:02 -06:00
"git"
2024-01-16 21:14:14 -06:00
"gnome"
2024-01-04 17:20:02 -06:00
"helix"
2024-01-05 13:23:43 -06:00
"htop"
"hyprland"
"iex"
2024-01-04 17:20:02 -06:00
"kitty"
2024-01-05 13:23:43 -06:00
"linux"
2024-01-04 17:20:02 -06:00
"linux-desktop"
2024-01-05 13:23:43 -06:00
"macos"
"mako"
"melee"
"nnn"
"pass"
"senpai"
2024-01-04 17:20:02 -06:00
"sway"
"sway-laptop"
2024-01-05 13:23:43 -06:00
"swaylock"
2024-01-04 17:20:02 -06:00
"tmux"
2024-01-30 19:36:52 -06:00
"wallpaper-manager"
2024-01-05 13:23:43 -06:00
"waybar"
"wezterm"
"zellij"
2024-01-04 17:20:02 -06:00
])