fix: dev vm enhacement, switch podman

This commit is contained in:
Rasyidan Akbar F. 2025-10-29 15:30:41 +07:00
commit 831f307f83
70 changed files with 2977 additions and 962 deletions

View file

@ -1,3 +1,18 @@
{ config, pkgs, lib, ... }: {
imports = [ ../../home/rsydn/base.nix ../../home/rsydn/shell/fish.nix ];
# Minimal CLI-only Home Manager configuration
# Used for servers, VMs, and headless systems
# Desktop configs are handled directly in nixos/desktops/* modules
imports = [
../../home/rsydn/base.nix # Base CLI tools (git, tmux, etc.)
../../home/rsydn/shell/fish.nix # Shell configuration
../../home/rsydn/shell/nushell.nix # Secondary Nushell setup
];
config.programs.tmux.extraConfig = lib.mkAfter ''
# Prefer fish for interactive sessions; launch Nushell on demand.
set -g default-shell "${config.home.profileDirectory}/bin/fish"
set -g default-command "${config.home.profileDirectory}/bin/fish --login"
bind-key C-n new-window -n nushell "${config.home.profileDirectory}/bin/nu --login"
'';
}