From 8739621b9e192e52076a5b5750db60b3fe999958 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 1 Mar 2024 23:58:43 -0500 Subject: [PATCH] moved sound to system/ --- flake.nix | 2 -- hardware/default.nix | 8 -------- system/default.nix | 1 + {hardware => system}/sound/default.nix | 0 4 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 hardware/default.nix rename {hardware => system}/sound/default.nix (100%) diff --git a/flake.nix b/flake.nix index 0feb1294..4ca23de6 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,6 @@ ./hosts/rustboro ./system ./flatpak - ./hardware ./desktop/gnome ./programs/podman ./programs/steam @@ -55,7 +54,6 @@ ./hosts/petalburg ./system ./flatpak - ./hardware ./desktop/gnome ./programs/podman ./programs/steam diff --git a/hardware/default.nix b/hardware/default.nix deleted file mode 100644 index 38bc93f3..00000000 --- a/hardware/default.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ config, pkgs, ... }: - -{ - imports = - [ # Include the results of the hardware scan. - ./sound - ]; -} \ No newline at end of file diff --git a/system/default.nix b/system/default.nix index ff17e6e3..6f34585d 100644 --- a/system/default.nix +++ b/system/default.nix @@ -4,6 +4,7 @@ imports = [ # Include the results of the hardware scan. ./network + ./sound ]; # Set your time zone. diff --git a/hardware/sound/default.nix b/system/sound/default.nix similarity index 100% rename from hardware/sound/default.nix rename to system/sound/default.nix