diff --git a/modules/core/default.nix b/modules/core/default.nix index b7b9e22..428978e 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -1,19 +1,19 @@ { ... }: { imports = - # [(import ./bootloader.nix)] - [(import ./hardware.nix)] - # ++ [(import ./xserver.nix)] + [(import ./bootloader.nix)] + ++ [(import ./hardware.nix)] + ++ [(import ./xserver.nix)] ++ [(import ./network.nix)] - # ++ [(import ./pipewire.nix)] + ++ [(import ./pipewire.nix)] ++ [(import ./program.nix)] ++ [(import ./sshd.nix)] ++ [(import ./security.nix)] ++ [(import ./services.nix)] ++ [(import ./system.nix)] - ++ [(import ./user.nix)]; - # ++ [(import ./bluetooth.nix)] - # ++ [(import ./yubikey.nix)] - # ++ [(import ./steam.nix)] - # ++ [(import ./wayland.nix)]; + ++ [(import ./user.nix)] + ++ [(import ./bluetooth.nix)] + ++ [(import ./yubikey.nix)] + ++ [(import ./steam.nix)] + ++ [(import ./wayland.nix)]; }