From e72cc514df9f1d1699068a108eac4d29bbad7ab0 Mon Sep 17 00:00:00 2001 From: ChaotiCryptidz Date: Sun, 16 Jan 2022 11:46:16 +0000 Subject: [PATCH] seporate sound and connectivity --- hosts/lappy/lappy.nix | 8 +++++--- outputs.nix | 2 ++ profiles/{ => connectivity}/bluetooth/bluetooth.nix | 0 profiles/{ => connectivity}/network_manager/nm.nix | 0 profiles/laptop/default.nix | 2 +- profiles/{pulse => sound/pulseaudio}/default.nix | 0 6 files changed, 8 insertions(+), 4 deletions(-) rename profiles/{ => connectivity}/bluetooth/bluetooth.nix (100%) rename profiles/{ => connectivity}/network_manager/nm.nix (100%) rename profiles/{pulse => sound/pulseaudio}/default.nix (100%) diff --git a/hosts/lappy/lappy.nix b/hosts/lappy/lappy.nix index 41650af..4e953a5 100644 --- a/hosts/lappy/lappy.nix +++ b/hosts/lappy/lappy.nix @@ -14,12 +14,14 @@ profiles.laptop + #profiles.connectivity.bluetooth + profiles.connectivity.network_manager + + profiles.sound.pulseaudio + profiles.gui profiles.gui.environments.sway - #profiles.bluetooth - profiles.pulse - profiles.network_manager profiles.gaming.steam diff --git a/outputs.nix b/outputs.nix index 6eb5898..890d52f 100644 --- a/outputs.nix +++ b/outputs.nix @@ -7,6 +7,8 @@ let config = { "hosts/*/services".functor.enable = true; "profiles/*".functor.enable = true; + "profiles/sound/*".functor.enable = true; + "profiles/connectivity/*".functor.enable = true; "profiles/gaming/*".functor.enable = true; "profiles/gui/environments/*".functor.enable = true; "users/*".functor.enable = true; diff --git a/profiles/bluetooth/bluetooth.nix b/profiles/connectivity/bluetooth/bluetooth.nix similarity index 100% rename from profiles/bluetooth/bluetooth.nix rename to profiles/connectivity/bluetooth/bluetooth.nix diff --git a/profiles/network_manager/nm.nix b/profiles/connectivity/network_manager/nm.nix similarity index 100% rename from profiles/network_manager/nm.nix rename to profiles/connectivity/network_manager/nm.nix diff --git a/profiles/laptop/default.nix b/profiles/laptop/default.nix index 2e3d4a4..2bf7c50 100644 --- a/profiles/laptop/default.nix +++ b/profiles/laptop/default.nix @@ -4,4 +4,4 @@ powerManagement.enable = true; powerManagement.powertop.enable = true; hardware.acpilight.enable = true; -} +} \ No newline at end of file diff --git a/profiles/pulse/default.nix b/profiles/sound/pulseaudio/default.nix similarity index 100% rename from profiles/pulse/default.nix rename to profiles/sound/pulseaudio/default.nix