nix/modules/nixos/default.nix

23 lines
855 B
Nix
Raw Normal View History

2023-10-03 11:52:44 -05:00
# Add your reusable NixOS modules to this directory, on their own file (https://nixos.wiki/wiki/Module).
# These should be stuff you would like to share with others, not your personal configurations.
{
2023-10-03 13:18:12 -05:00
common = import ./common.nix;
2023-10-03 17:09:12 -05:00
melee = import ./melee.nix;
2023-11-07 17:09:05 -06:00
ewwbar = import ./ewwbar.nix;
2023-10-03 11:52:44 -05:00
desktop-usage = import ./desktop-usage.nix;
intel = import ./intel.nix;
pipewire = import ./pipewire.nix;
2023-10-08 02:46:37 -05:00
pipewire-low-latency = import ./pipewire-low-latency.nix;
2023-10-03 11:52:44 -05:00
podman = import ./podman.nix;
postgres = import ./postgres.nix;
sway = import ./sway.nix;
2023-11-07 17:09:05 -06:00
hyprland = import ./hyprland.nix;
2023-10-03 11:52:44 -05:00
user-installed-applications = import ./user-installed-applications.nix;
wifi = import ./wifi.nix;
2024-01-04 13:40:14 -06:00
gnome = import ./gnome.nix;
2023-10-20 09:31:24 -05:00
kde-connect = import ./kde-connect.nix;
2024-01-04 14:45:10 -06:00
flanfam = import ./flanfam.nix;
flanfamkiosk = import ./flanfamkiosk.nix;
2023-10-03 11:52:44 -05:00
}