From c3ca8c5420909a08cfe915dd293974a5a7bda2b5 Mon Sep 17 00:00:00 2001 From: Tobias Happ Date: Fri, 4 Oct 2019 18:02:39 +0200 Subject: [PATCH] Install basic-environment via home-manager --- src/pkgs/files/raw/home.nix.default | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pkgs/files/raw/home.nix.default b/src/pkgs/files/raw/home.nix.default index e60ca1a..e60781a 100644 --- a/src/pkgs/files/raw/home.nix.default +++ b/src/pkgs/files/raw/home.nix.default @@ -3,6 +3,10 @@ { pkgs, ... }: +let + nix-on-droid = import { }; +in + { # Let Home Manager install and manage itself. programs.home-manager.enable = true; @@ -22,10 +26,9 @@ # Simply install just the packages home.packages = with pkgs; [ # Stuff that you really really want to have - nix cacert coreutils # think twice before removing these + nix-on-droid.basic-environment # think twice before removing these # User-facing stuff that you really really want to have - bashInteractive # think twice before removing thes vim # or some other editor, e.g. nano or neovim # Some common stuff that people expect to have