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
|
|
|
|
./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 11:48:49 +00:00
|
|
|
|
|
|
|
config.modules = {
|
|
|
|
# Enable default modules
|
|
|
|
neovim.enable = mkDefault true;
|
|
|
|
tuigreet.enable = mkDefault true;
|
|
|
|
tailscale.enable = mkDefault true;
|
|
|
|
};
|
2024-07-18 04:08:27 +00:00
|
|
|
}
|