From 896f3575598aa2e5c4e04334f844864a0c445cc8 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 21 Jun 2024 09:36:07 +0200 Subject: [PATCH] chore: enable/disable modules --- modules/core/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/core/default.nix b/modules/core/default.nix index 5be24f7..ae5966d 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -1,4 +1,4 @@ -{ inputs, nixpkgs, self, username, host, ...}: +{ ... }: { imports = [ (import ./bootloader.nix) ] @@ -11,6 +11,7 @@ ++ [ (import ./services.nix) ] ++ [ (import ./system.nix) ] ++ [ (import ./user.nix) ] - ++ [ (import ./wayland.nix) ] - ++ [ (import ./virtualization.nix) ]; + ++ [ (import ./bluetooth.nix) ] + ++ [ (import ./wayland.nix) ]; + # ++ [ (import ./virtualization.nix) ]; }