diff --git a/modules/home/communication/default.nix b/modules/home/communication/default.nix deleted file mode 100644 index 9b281a2..0000000 --- a/modules/home/communication/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ pkgs, ... }: { - home.packages = with pkgs; [ - signal-desktop - vesktop - fractal - ]; - - programs.thunderbird = { - enable = true; - profiles = { - "default" = { - isDefault = true; - }; - }; - }; -} diff --git a/modules/home/default.nix b/modules/home/default.nix index 7ceaeb8..2181cf9 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -2,8 +2,6 @@ imp = if config.minimalHome then [ ./utils ] else [ - ./browser - ./communication ./niri-setup ./programs ./themes diff --git a/modules/home/programs/default.nix b/modules/home/programs/default.nix index d259033..885ea00 100644 --- a/modules/home/programs/default.nix +++ b/modules/home/programs/default.nix @@ -1,9 +1,14 @@ { pkgs, osConfig, ... }: { + imports = [ + ./firefox.nix + ]; + home.packages = with pkgs; [ - krita + signal-desktop + vesktop + fractal loupe gnome.nautilus - anki-bin libreoffice-qt6-fresh ]; @@ -28,6 +33,15 @@ }; }; + programs.thunderbird = { + enable = true; + profiles = { + "default" = { + isDefault = true; + }; + }; + }; + programs.alacritty = { enable = true; settings = import ./alacritty-config.nix; diff --git a/modules/home/browser/default.nix b/modules/home/programs/firefox.nix similarity index 100% rename from modules/home/browser/default.nix rename to modules/home/programs/firefox.nix