aboutsummaryrefslogtreecommitdiff
path: root/home/profiles
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-09-09 21:37:36 +0900
committersefidel <contact@sefidel.net>2022-09-09 21:40:32 +0900
commit390ddf448516447af081d1ebe8b2e2aff2555b7c (patch)
tree593427d21b8c9ca3be90057e4babb7a0b7f536f8 /home/profiles
parentf7749a73b778fcec683308adaf784d6e2fd866a6 (diff)
downloadnixrc-390ddf448516447af081d1ebe8b2e2aff2555b7c.zip
feat(home/research): declutter
Diffstat (limited to 'home/profiles')
-rw-r--r--home/profiles/research/default.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/home/profiles/research/default.nix b/home/profiles/research/default.nix
index 7f19dd8..a725bed 100644
--- a/home/profiles/research/default.nix
+++ b/home/profiles/research/default.nix
@@ -1,7 +1,6 @@
{ config, lib, pkgs, self, ... }:
let
cfg = config.profiles.research;
- inherit (self.packages.x86_64-linux) athens;
in
{
imports = [ ../../modules/programs/nixpkgs ];
@@ -52,13 +51,9 @@ in
};
home.packages = [
- athens
pkgs.texlive.combined.scheme-small
pkgs.pandoc
- pkgs.obsidian
- pkgs.google-chrome
+ pkgs.ltex-ls
];
-
- nixpkgs.allowedUnfree = [ "obsidian" "google-chrome" ];
};
}