From 07d0dc649d5e5f335df01c781c8e71cec08c3deb Mon Sep 17 00:00:00 2001 From: Johannes Rothe Date: Sun, 29 Sep 2024 22:21:13 +0200 Subject: [PATCH] Add work laptop --- flake.nix | 6 ++++++ home/terminal/default.nix | 9 +++++++++ 2 files changed, 15 insertions(+) diff --git a/flake.nix b/flake.nix index 6498b99..f93d81e 100644 --- a/flake.nix +++ b/flake.nix @@ -36,6 +36,12 @@ ./home/rothe.nix ]; }; + "rothe@pdemu1cml000301" = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ + ./home/rothe.nix + ]; + }; }; }; } diff --git a/home/terminal/default.nix b/home/terminal/default.nix index 6462a77..fa7ad63 100644 --- a/home/terminal/default.nix +++ b/home/terminal/default.nix @@ -18,6 +18,15 @@ # disable greeting shellInit = '' set fish_greeting + fish_add_path ~/bin/ + fish_add_path ~/go/bin/ + export DEBFULLNAME="Johannes Rothe" + export DEBEMAIL="mail@johannes-rothe.de" + export GIT_AUTHOR_NAME="Johannes Rothe" + export GIT_AUTHOR_EMAIL="rothe@magazino.eu" + export GIT_COMMITTER_NAME="Johannes Rothe" + export GIT_COMMITTER_EMAIL="rothe@magazino.eu" + export VAULT_ADDR="https://passwords.magazino.eu:8201" ''; shellAliases = { "..." = "cd ../..";