From a813e5a010fe207c9fd7ab7f188b829e9caa8785 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Mon, 26 May 2025 13:30:59 -0700 Subject: [PATCH] style: move stylix.nix into shell/ --- modules/home/default.nix | 2 +- modules/home/shell/default.nix | 5 +++++ modules/home/{ => shell}/stylix.nix | 0 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 modules/home/shell/default.nix rename modules/home/{ => shell}/stylix.nix (100%) diff --git a/modules/home/default.nix b/modules/home/default.nix index 17a5cc2..59dfca9 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -5,9 +5,9 @@ ./options ./home-manager.nix - ./stylix.nix ./system + ./shell ./programs ./profiles.nix diff --git a/modules/home/shell/default.nix b/modules/home/shell/default.nix new file mode 100644 index 0000000..1d81f85 --- /dev/null +++ b/modules/home/shell/default.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ./stylix.nix + ]; +} diff --git a/modules/home/stylix.nix b/modules/home/shell/stylix.nix similarity index 100% rename from modules/home/stylix.nix rename to modules/home/shell/stylix.nix