nix/modules/nixos/default.nix

31 lines
517 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;
}) [
"common"
"melee"
"ewwbar"
"desktop-usage"
2024-01-21 13:01:05 -06:00
"fonts"
2024-01-04 17:20:02 -06:00
"intel"
2024-01-16 21:14:14 -06:00
"lutris"
2024-01-04 17:20:02 -06:00
"pipewire"
2024-01-06 11:43:30 -06:00
"pipewire-low-latency"
2024-01-04 17:20:02 -06:00
"podman"
"postgres"
"sway"
"hyprland"
"user-installed-applications"
"wifi"
"gnome"
"kde-connect"
2024-02-02 00:00:54 -06:00
"kde-plasma"
2024-01-04 17:20:02 -06:00
"printing"
"avahi"
2024-01-04 14:45:10 -06:00
2024-01-04 17:20:02 -06:00
"daniel"
"flanfam"
"flanfamkiosk"
])