diff --git a/machines/aramis/bluetooth.nix b/machines/aramis/bluetooth.nix deleted file mode 100644 index 0255a72..0000000 --- a/machines/aramis/bluetooth.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ ... }: -{ - # Bluetooth integration - my.modules.bluetooth.enable = true; -} diff --git a/machines/aramis/default.nix b/machines/aramis/default.nix index 221da9e..1af2dd6 100644 --- a/machines/aramis/default.nix +++ b/machines/aramis/default.nix @@ -6,11 +6,11 @@ { imports = [ - ./bluetooth.nix ./boot.nix ./hardware.nix ./home.nix ./networking.nix + ./profiles.nix ./services.nix ./sound.nix ]; diff --git a/machines/aramis/home.nix b/machines/aramis/home.nix index 9893ced..a63bf3b 100644 --- a/machines/aramis/home.nix +++ b/machines/aramis/home.nix @@ -1,8 +1,6 @@ { pkgs, ... }: { my.home = { - # Bluetooth GUI & media keys - bluetooth.enable = true; # Image viewver feh.enable = true; # Firefo profile and extensions diff --git a/machines/aramis/profiles.nix b/machines/aramis/profiles.nix new file mode 100644 index 0000000..f9aa2aa --- /dev/null +++ b/machines/aramis/profiles.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + my.profiles = { + # Bluetooth configuration and GUI + bluetooth.enable = true; + }; +}