This commit is contained in:
2022-10-17 17:33:46 -04:00
parent 5e1a016465
commit 5d341048f7
2 changed files with 13 additions and 4 deletions

View File

@@ -5,6 +5,7 @@
# paths it should manage. # paths it should manage.
home.username = "sstent"; home.username = "sstent";
home.homeDirectory = "/home/sstent"; home.homeDirectory = "/home/sstent";
#targets.genericLinux.enable = true;
# This value determines the Home Manager release that your # This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage # configuration is compatible with. This helps avoid breakage
@@ -19,8 +20,9 @@
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
python38
nmap nmap
nomad nomad_1_4
consul consul
terraform terraform
wget wget
@@ -44,7 +46,7 @@ programs.bash = {
export NOMAD_ADDR="http://192.168.1.250:4646"; export NOMAD_ADDR="http://192.168.1.250:4646";
export TERM="xterm-256color"; export TERM="xterm-256color";
if [ -e /home/sstent/.nix-profile/etc/profile.d/nix.sh ]; then . /home/sstent/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer if [ -e /home/sstent/.nix-profile/etc/profile.d/nix.sh ]; then . /home/sstent/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
keybase service & #keybase service &
# Configure ssh forwarding # Configure ssh forwarding
. ~/bin/wsl-ssh-agent-forwarder . ~/bin/wsl-ssh-agent-forwarder
ssh-add -l ssh-add -l

View File

@@ -18,7 +18,7 @@ checkout = git clone 'git@github.com:sstent/containers.git' "$MR_REPO"
post_checkout = cd "$MR_REPO" && git remote add keybase keybase://private/sstent/containers post_checkout = cd "$MR_REPO" && git remote add keybase keybase://private/sstent/containers
fixups = fixups =
if ! git config remote.keybase.url > /dev/null; then if ! git config remote.keybase.url > /dev/null; then
echo "NO KeyBase" echo "No KeyBase"
fi fi
@@ -27,6 +27,13 @@ name = nixpkgs
checkout = git clone 'git@github.com:sstent/nixpkgs.git' 'nixpkgs' checkout = git clone 'git@github.com:sstent/nixpkgs.git' 'nixpkgs'
fixups = fixups =
if ! git config remote.keybase.url > /dev/null; then if ! git config remote.keybase.url > /dev/null; then
echo "NO KeyBase" echo "No KeyBase"
git remote add keybase keybase://private/sstent/nixpkgs git remote add keybase keybase://private/sstent/nixpkgs
fi fi
[projects/gocast]
name = gocast
checkout = git clone 'git@github.com:sstent/gocast.git' 'gocast'
[projects/code]
checkout = git clone 'keybase://private/sstent/code' 'code'