nixos-config/modules/default.nix

24 lines
519 B
Nix
Raw Normal View History

2024-07-18 06:08:27 +02:00
{ lib, config, pkgs, ... }:
2024-07-18 13:48:49 +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
./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
2024-07-18 13:48:49 +02:00
./greeter/greetd/default.nix
./greeter/greetd/tuigreet.nix
./locale/default.nix
./neovim/default.nix
./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
}