home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit b10492ed9d7f7d9014aa95c81e1951009b957719
parent f88bf3e1ea01b4d60a0fa6e13b42035016969eeb
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu, 21 May 2020 15:35:08 +0200

machines/sandbox: add home-manager support

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmachines/sandbox.nix | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/machines/sandbox.nix b/machines/sandbox.nix @@ -15,4 +15,8 @@ forwardX11 = true; }; }; + home-manager.users.vincent = import ./kerkouane.nix; + home-manager.users.root = { pkgs, ... }: { + home.packages = with pkgs; [ htop ]; + }; }