From 8fe56651358917b7b65cfe0a39af9249dfa25762 Mon Sep 17 00:00:00 2001 From: cnst Date: Sun, 7 Jul 2024 09:41:56 +0200 Subject: [PATCH] some resturcturing of hm --- home/core/cnst.nix | 4 +--- home/core/gui/default.nix | 2 ++ home/core/{appearance/gtk.nix => gui/gtk/default.nix} | 0 home/core/{appearance => gui/xdg}/default.nix | 0 home/core/tui/default.nix | 6 ++++++ home/core/{ => tui}/git/default.nix | 0 home/core/{ => tui}/shell/adam.nix | 0 home/core/{ => tui}/shell/cnst.nix | 0 8 files changed, 9 insertions(+), 3 deletions(-) rename home/core/{appearance/gtk.nix => gui/gtk/default.nix} (100%) rename home/core/{appearance => gui/xdg}/default.nix (100%) create mode 100644 home/core/tui/default.nix rename home/core/{ => tui}/git/default.nix (100%) rename home/core/{ => tui}/shell/adam.nix (100%) rename home/core/{ => tui}/shell/cnst.nix (100%) diff --git a/home/core/cnst.nix b/home/core/cnst.nix index 12046e74..d3becb78 100644 --- a/home/core/cnst.nix +++ b/home/core/cnst.nix @@ -6,9 +6,7 @@ }; imports = [ ./system/polkit.nix - ./git ./gui - ./shell/cnst.nix - ./appearance + ./tui ]; } diff --git a/home/core/gui/default.nix b/home/core/gui/default.nix index 96b90d4a..c3f3a6a9 100644 --- a/home/core/gui/default.nix +++ b/home/core/gui/default.nix @@ -9,6 +9,8 @@ ./rofi ./waybar ./anyrun + ./gtk + ./xdg ]; home.packages = with pkgs; [ diff --git a/home/core/appearance/gtk.nix b/home/core/gui/gtk/default.nix similarity index 100% rename from home/core/appearance/gtk.nix rename to home/core/gui/gtk/default.nix diff --git a/home/core/appearance/default.nix b/home/core/gui/xdg/default.nix similarity index 100% rename from home/core/appearance/default.nix rename to home/core/gui/xdg/default.nix diff --git a/home/core/tui/default.nix b/home/core/tui/default.nix new file mode 100644 index 00000000..eaafcda1 --- /dev/null +++ b/home/core/tui/default.nix @@ -0,0 +1,6 @@ +{ + imports = [ + ./git + ./shell + ]; +} diff --git a/home/core/git/default.nix b/home/core/tui/git/default.nix similarity index 100% rename from home/core/git/default.nix rename to home/core/tui/git/default.nix diff --git a/home/core/shell/adam.nix b/home/core/tui/shell/adam.nix similarity index 100% rename from home/core/shell/adam.nix rename to home/core/tui/shell/adam.nix diff --git a/home/core/shell/cnst.nix b/home/core/tui/shell/cnst.nix similarity index 100% rename from home/core/shell/cnst.nix rename to home/core/tui/shell/cnst.nix