2024-07-18 04:08:27 +00:00
|
|
|
{ lib, config, pkgs, ... }:
|
|
|
|
|
2024-07-18 11:48:49 +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
|
|
|
|
./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
|
|
|
|
./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
|
|
|
}
|