diff --git a/modules/home/profiles.nix b/modules/home/profiles.nix index f526b7a..129255f 100644 --- a/modules/home/profiles.nix +++ b/modules/home/profiles.nix @@ -47,6 +47,7 @@ in { nemo = enabled; neo = enabled; neovim = enabled; + tea = enabled; }; services = { diff --git a/modules/home/programs/default.nix b/modules/home/programs/default.nix index 2004176..804addd 100644 --- a/modules/home/programs/default.nix +++ b/modules/home/programs/default.nix @@ -28,6 +28,7 @@ ./ssh.nix ./starship ./systemctl.nix + ./tea.nix ./waybar.nix # TODO: uncomment when swaylock is figured out diff --git a/modules/home/programs/tea.nix b/modules/home/programs/tea.nix new file mode 100644 index 0000000..fd5f5cd --- /dev/null +++ b/modules/home/programs/tea.nix @@ -0,0 +1,16 @@ +{ + config, + lib, + pkgs, + ... +}: let + cfg = config.marleyos.programs.tea; +in { + options.marleyos.programs.tea.enable = lib.mkEnableOption "tea"; + + config = lib.mkIf cfg.enable { + home.packages = with pkgs; [ + tea + ]; + }; +} diff --git a/snowflake/modules/home/programs/cli/tea/default.nix b/snowflake/modules/home/programs/cli/tea/default.nix deleted file mode 100644 index ee0b228..0000000 --- a/snowflake/modules/home/programs/cli/tea/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ - lib, - config, - pkgs, - ... -}: -let - inherit (lib) mkEnableOption mkIf; - - cfg = config.marleyos.programs.tea; -in -{ - options.marleyos.programs.tea.enable = mkEnableOption "tea"; - - config = mkIf cfg.enable { - home.packages = with pkgs; [ - tea - ]; - }; -}