From 866b1561af0feee65bdf7a415f41f030305bb8f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikodem=20Rabuli=C5=84ski?= Date: Sat, 4 Jan 2025 16:48:03 +0100 Subject: [PATCH] modules/home: common -> settei --- modules/home/default.nix | 2 +- modules/home/{common => settei}/default.nix | 0 modules/home/{common => settei}/desktop/default.nix | 0 modules/home/{common => settei}/desktop/zellij.nix | 0 modules/home/{common => settei}/xdg.nix | 0 modules/system/common/default.nix | 2 +- 6 files changed, 2 insertions(+), 2 deletions(-) rename modules/home/{common => settei}/default.nix (100%) rename modules/home/{common => settei}/desktop/default.nix (100%) rename modules/home/{common => settei}/desktop/zellij.nix (100%) rename modules/home/{common => settei}/xdg.nix (100%) diff --git a/modules/home/default.nix b/modules/home/default.nix index 43d2baa..e959440 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -1,5 +1,5 @@ { flake.homeModules = { - common = ./common; + settei = ./settei; }; } diff --git a/modules/home/common/default.nix b/modules/home/settei/default.nix similarity index 100% rename from modules/home/common/default.nix rename to modules/home/settei/default.nix diff --git a/modules/home/common/desktop/default.nix b/modules/home/settei/desktop/default.nix similarity index 100% rename from modules/home/common/desktop/default.nix rename to modules/home/settei/desktop/default.nix diff --git a/modules/home/common/desktop/zellij.nix b/modules/home/settei/desktop/zellij.nix similarity index 100% rename from modules/home/common/desktop/zellij.nix rename to modules/home/settei/desktop/zellij.nix diff --git a/modules/home/common/xdg.nix b/modules/home/settei/xdg.nix similarity index 100% rename from modules/home/common/xdg.nix rename to modules/home/settei/xdg.nix diff --git a/modules/system/common/default.nix b/modules/system/common/default.nix index 17b299b..6ba5f86 100644 --- a/modules/system/common/default.nix +++ b/modules/system/common/default.nix @@ -25,7 +25,7 @@ let enable = lib.mkDefault true; # TODO: Move to settei or leave here? extraArgs.machineName = configurationName; - config.imports = [ inputs.settei.homeModules.common ]; + config.imports = [ inputs.settei.homeModules.settei ]; }; };