From e16eb293456477fe82818da2f370af7f6cf17ed3 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 23 Apr 2021 22:05:27 +0200 Subject: [PATCH 1/2] home: setup additional paths --- home/default.nix | 1 + home/env.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 home/env.nix diff --git a/home/default.nix b/home/default.nix index 3be4117..10ebaae 100644 --- a/home/default.nix +++ b/home/default.nix @@ -3,6 +3,7 @@ imports = [ ./alacritty.nix ./emacs.nix + ./env.nix ./fish ./flameshot.nix ./secrets diff --git a/home/env.nix b/home/env.nix new file mode 100644 index 0000000..f2b2551 --- /dev/null +++ b/home/env.nix @@ -0,0 +1,7 @@ +{ config, ... }: +{ + home.sessionPath = [ + "${config.xdg.configHome}/emacs/bin" + "${config.home.homeDirectory}/.cargo/bin" + ]; +} From 85e2422b593dca32023fb32b0d09cfbadf3f8c8c Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 23 Apr 2021 22:05:46 +0200 Subject: [PATCH 2/2] boreal: install clang11 --- hosts/boreal/home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/boreal/home.nix b/hosts/boreal/home.nix index a53d7fa..896b31e 100644 --- a/hosts/boreal/home.nix +++ b/hosts/boreal/home.nix @@ -13,6 +13,9 @@ my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight; home.packages = with pkgs; [ + # dev + clang_11 + beancount fava ];