diff --git a/nixos/modules/default.nix b/nixos/modules/default.nix index 01ead29..e7097fa 100644 --- a/nixos/modules/default.nix +++ b/nixos/modules/default.nix @@ -1,7 +1,6 @@ {...}: { imports = [ - ./boot - ./hardware - ./networking + # utils that is used internally + ./myFlake ]; } diff --git a/nixos/modules/boot/boot.nix b/nixos/modules/myFlake/boot/boot.nix similarity index 100% rename from nixos/modules/boot/boot.nix rename to nixos/modules/myFlake/boot/boot.nix diff --git a/nixos/modules/boot/default.nix b/nixos/modules/myFlake/boot/default.nix similarity index 100% rename from nixos/modules/boot/default.nix rename to nixos/modules/myFlake/boot/default.nix diff --git a/nixos/modules/myFlake/default.nix b/nixos/modules/myFlake/default.nix new file mode 100644 index 0000000..01ead29 --- /dev/null +++ b/nixos/modules/myFlake/default.nix @@ -0,0 +1,7 @@ +{...}: { + imports = [ + ./boot + ./hardware + ./networking + ]; +} diff --git a/nixos/modules/hardware/accessories/default.nix b/nixos/modules/myFlake/hardware/accessories/default.nix similarity index 100% rename from nixos/modules/hardware/accessories/default.nix rename to nixos/modules/myFlake/hardware/accessories/default.nix diff --git a/nixos/modules/hardware/accessories/logitech-wireless.nix b/nixos/modules/myFlake/hardware/accessories/logitech-wireless.nix similarity index 100% rename from nixos/modules/hardware/accessories/logitech-wireless.nix rename to nixos/modules/myFlake/hardware/accessories/logitech-wireless.nix diff --git a/nixos/modules/hardware/accessories/piper.nix b/nixos/modules/myFlake/hardware/accessories/piper.nix similarity index 100% rename from nixos/modules/hardware/accessories/piper.nix rename to nixos/modules/myFlake/hardware/accessories/piper.nix diff --git a/nixos/modules/hardware/accessories/xbox-one-controller.nix b/nixos/modules/myFlake/hardware/accessories/xbox-one-controller.nix similarity index 100% rename from nixos/modules/hardware/accessories/xbox-one-controller.nix rename to nixos/modules/myFlake/hardware/accessories/xbox-one-controller.nix diff --git a/nixos/modules/hardware/components/audio.nix b/nixos/modules/myFlake/hardware/components/audio.nix similarity index 100% rename from nixos/modules/hardware/components/audio.nix rename to nixos/modules/myFlake/hardware/components/audio.nix diff --git a/nixos/modules/hardware/components/bluetooth.nix b/nixos/modules/myFlake/hardware/components/bluetooth.nix similarity index 100% rename from nixos/modules/hardware/components/bluetooth.nix rename to nixos/modules/myFlake/hardware/components/bluetooth.nix diff --git a/nixos/modules/hardware/components/default.nix b/nixos/modules/myFlake/hardware/components/default.nix similarity index 100% rename from nixos/modules/hardware/components/default.nix rename to nixos/modules/myFlake/hardware/components/default.nix diff --git a/nixos/modules/hardware/components/tpm.nix b/nixos/modules/myFlake/hardware/components/tpm.nix similarity index 100% rename from nixos/modules/hardware/components/tpm.nix rename to nixos/modules/myFlake/hardware/components/tpm.nix diff --git a/nixos/modules/hardware/default.nix b/nixos/modules/myFlake/hardware/default.nix similarity index 100% rename from nixos/modules/hardware/default.nix rename to nixos/modules/myFlake/hardware/default.nix diff --git a/nixos/modules/networking/default.nix b/nixos/modules/myFlake/networking/default.nix similarity index 100% rename from nixos/modules/networking/default.nix rename to nixos/modules/myFlake/networking/default.nix diff --git a/nixos/modules/networking/dns.nix b/nixos/modules/myFlake/networking/dns.nix similarity index 100% rename from nixos/modules/networking/dns.nix rename to nixos/modules/myFlake/networking/dns.nix diff --git a/nixos/modules/networking/network-configuration-daemon.nix b/nixos/modules/myFlake/networking/network-configuration-daemon.nix similarity index 100% rename from nixos/modules/networking/network-configuration-daemon.nix rename to nixos/modules/myFlake/networking/network-configuration-daemon.nix