From 14ec90d5b415188eba48debbe3723fda4abe09f9 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Mon, 17 Feb 2025 11:01:18 +0100 Subject: [PATCH] Improve code structure --- modules/home/default.nix | 4 ++-- modules/home/scripts/{scripts.nix => default.nix} | 0 modules/home/swaync/{swaync.nix => default.nix} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename modules/home/scripts/{scripts.nix => default.nix} (100%) rename modules/home/swaync/{swaync.nix => default.nix} (100%) diff --git a/modules/home/default.nix b/modules/home/default.nix index 3e2ebac..fc26e5d 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -18,12 +18,12 @@ ++ [(import ./hyprland)] # window manager ++ [(import ./kdeconnect.nix)] ++ [(import ./kitty.nix)] # terminal - ++ [(import ./swaync/swaync.nix)] # notification deamon + ++ [(import ./swaync)] # notification deamon ++ [(import ./nextcloud.nix)] # nextcloud client ++ [(import ./nvim.nix)] # neovim editor ++ [(import ./packages.nix)] # other packages ++ [(import ./retroarch.nix)] - ++ [(import ./scripts/scripts.nix)] # personal scripts + ++ [(import ./scripts)] # personal scripts ++ [(import ./spotify.nix)] ++ [(import ./starship.nix)] # shell prompt ++ [(import ./qt.nix)] diff --git a/modules/home/scripts/scripts.nix b/modules/home/scripts/default.nix similarity index 100% rename from modules/home/scripts/scripts.nix rename to modules/home/scripts/default.nix diff --git a/modules/home/swaync/swaync.nix b/modules/home/swaync/default.nix similarity index 100% rename from modules/home/swaync/swaync.nix rename to modules/home/swaync/default.nix