From 6ae99761e8f31c0c88d97db194a22e95e1bc64b2 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 27 Aug 2025 12:02:06 -0400 Subject: [PATCH] tart: darwin common --- configurations/home/srid@infinitude.nix | 7 +------ modules/home/all/terminal.nix | 1 - modules/home/darwin-only.nix | 4 ++++ 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/configurations/home/srid@infinitude.nix b/configurations/home/srid@infinitude.nix index 17f6648..3058eb5 100644 --- a/configurations/home/srid@infinitude.nix +++ b/configurations/home/srid@infinitude.nix @@ -1,4 +1,4 @@ -{ lib, pkgs, flake, ... }: +{ flake, ... }: let inherit (flake) inputs; inherit (inputs) self; @@ -10,9 +10,4 @@ in ]; home.username = "srid"; - - home.packages = [ - ] ++ lib.optionals pkgs.stdenv.isDarwin [ - pkgs.tart - ]; } diff --git a/modules/home/all/terminal.nix b/modules/home/all/terminal.nix index 979feed..c6bbbb2 100644 --- a/modules/home/all/terminal.nix +++ b/modules/home/all/terminal.nix @@ -48,7 +48,6 @@ in fuckport sshuttle-via entr - git-merge-and-delete # Fonts cascadia-code diff --git a/modules/home/darwin-only.nix b/modules/home/darwin-only.nix index 9369337..42760a2 100644 --- a/modules/home/darwin-only.nix +++ b/modules/home/darwin-only.nix @@ -5,4 +5,8 @@ ./all/nushell # ./all/emacs.nix ]; + + home.packages = [ + pkgs.tart + ]; }