dotfiles/modules/default.nix

32 lines
586 B
Nix
Raw Normal View History

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