diff options
author | sefidel <contact@sefidel.net> | 2023-08-25 14:35:12 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-08-30 22:07:02 +0900 |
commit | a18011dcfb3cd6e568ca355770d070586023e5ea (patch) | |
tree | 4e28254f51282e9b665c58cde1b197951bcd7178 /home/profiles/research | |
parent | 93ff69d19bc2b7bc58c6c83ea66129fc4ae74c85 (diff) | |
download | nixrc-a18011dcfb3cd6e568ca355770d070586023e5ea.tar.gz nixrc-a18011dcfb3cd6e568ca355770d070586023e5ea.zip |
fix(home/research): move kicad to linux-only
Diffstat (limited to 'home/profiles/research')
-rw-r--r-- | home/profiles/research/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/home/profiles/research/default.nix b/home/profiles/research/default.nix index 111a98c..ef9c4f1 100644 --- a/home/profiles/research/default.nix +++ b/home/profiles/research/default.nix @@ -51,10 +51,12 @@ in }; home.packages = [ - pkgs.kicad pkgs.ltex-ls pkgs.pandoc pkgs.texlive.combined.scheme-small + ] ++ pkgs.lib.optionals (pkgs.stdenv.isLinux) [ + # TODO: currently broken/doesn't support Darwin + pkgs.kicad ]; }; } |