From b64aa5b312d689f62c4321e10e502ca43ec60723 Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 17 Feb 2026 18:00:58 +0100 Subject: [PATCH] Add additions for susano machine --- machines/susano/main/home.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/machines/susano/main/home.nix b/machines/susano/main/home.nix index 81fc7ba..996b3fd 100644 --- a/machines/susano/main/home.nix +++ b/machines/susano/main/home.nix @@ -27,8 +27,19 @@ in { sc = "source $HOME/.zshrc"; psax = "ps ax | grep"; cp = "rsync -ah --progress"; + nixos-build = "nixos-rebuild build --flake ~/nixos/#${username}"; + nixos-test = "sudo nixos-rebuild test --flake ~/nixos/#${username}"; + nixos-switch = "sudo nixos-rebuild switch --flake ~/nixos/#${username}"; + nixos-boot = "sudo nixos-rebuild boot --flake ~/nixos/#${username}"; }; }; + + addition = { + starship.enable = true; + oxidise.enable = true; + tmux.enable = true; + fzf.enable = true; + }; }; };