nixos-config/modules/default.nix

34 lines
649 B
Nix
Raw Normal View History

2024-07-19 14:00:55 +02:00
{
lib,
config,
pkgs,
...
}:
2024-07-18 06:08:27 +02:00
2024-07-19 14:00:55 +02:00
with lib;
{
2024-07-18 06:08:27 +02:00
imports = [
2024-07-18 13:48:49 +02:00
# Import modules
2024-07-18 23:56:00 +02:00
./base/default.nix
2024-09-02 20:03:39 +02:00
./bluetooth/default.nix
2024-07-18 23:56:00 +02:00
./boot/clean-tmp.nix
./boot/silent-boot.nix
./boot/systemd-boot.nix
./brightnessctl/default.nix
2024-07-18 18:13:19 +02:00
./fontconfig/default.nix
2024-07-18 23:56:00 +02:00
./graphics/default.nix
2025-02-11 12:24:10 +01:00
./greeter/gdm/default.nix
2024-07-18 13:48:49 +02:00
./greeter/greetd/default.nix
./greeter/greetd/tuigreet.nix
./locale/default.nix
./neovim/default.nix
2025-01-28 09:20:50 +01:00
./networkmanager/default.nix
2024-07-19 21:54:41 +02:00
./power-saving/default.nix
2024-07-18 13:48:49 +02:00
./sound/pipewire.nix
2024-07-18 06:08:27 +02:00
./users/default.nix
2024-07-18 13:48:49 +02:00
./unfree/default.nix
./vpn/tailscale.nix
./wifi/wpa_supplicant.nix
2024-07-18 06:08:27 +02:00
];
2024-07-18 18:13:19 +02:00
}