diff options
author | sefidel <contact@sefidel.net> | 2022-05-05 00:55:23 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-05-05 00:55:23 +0900 |
commit | 1401212e864f688edddc1864681434b30d3330a8 (patch) | |
tree | f7a7b9215ae55ce51c552196231a91aebdfdc414 /home/profiles/research | |
parent | d66ac0de80719895b853d9bfc6d0e3d33cb35490 (diff) | |
download | nixrc-1401212e864f688edddc1864681434b30d3330a8.tar.gz nixrc-1401212e864f688edddc1864681434b30d3330a8.zip |
feat(home/research): move athens to research
Diffstat (limited to 'home/profiles/research')
-rw-r--r-- | home/profiles/research/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/home/profiles/research/default.nix b/home/profiles/research/default.nix index 511ba6b..7f19dd8 100644 --- a/home/profiles/research/default.nix +++ b/home/profiles/research/default.nix @@ -1,5 +1,7 @@ -{ config, lib, pkgs, ... }: -let cfg = config.profiles.research; +{ config, lib, pkgs, self, ... }: +let + cfg = config.profiles.research; + inherit (self.packages.x86_64-linux) athens; in { imports = [ ../../modules/programs/nixpkgs ]; @@ -50,6 +52,7 @@ in }; home.packages = [ + athens pkgs.texlive.combined.scheme-small pkgs.pandoc pkgs.obsidian |