From 1151aaa3cb6291f201bfa5e667ef3d0d63810ba7 Mon Sep 17 00:00:00 2001 From: DuN0z Date: Wed, 29 Oct 2025 22:57:34 +0100 Subject: [PATCH] Add: alias for agenix --- hm/common/zsh.nix | 1 + hosts/penduick/configuration.nix | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/hm/common/zsh.nix b/hm/common/zsh.nix index 7f1a8f1..2cd45b5 100644 --- a/hm/common/zsh.nix +++ b/hm/common/zsh.nix @@ -20,6 +20,7 @@ _: { shellAliases = { h = "history"; upd = "sudo nixos-rebuild switch --flake $HOME/nixos-config#pennsardin; source ~/.zshrc"; + agenix = "nix run github:ryantm/agenix --"; }; shellGlobalAliases = { G = "| grep"; diff --git a/hosts/penduick/configuration.nix b/hosts/penduick/configuration.nix index bca57b8..21862f2 100644 --- a/hosts/penduick/configuration.nix +++ b/hosts/penduick/configuration.nix @@ -33,6 +33,7 @@ in { isNormalUser = true; extraGroups = [ "wheel" "networkmanager" ]; initialPassword = "temp"; + shell = pkgs.zsh; }; home-manager = { @@ -41,7 +42,7 @@ in { }; environment.systemPackages = with pkgs; [ - vim git btop htop wget curl + git htop wget curl neovim ];