feat: add simple default path shell

This commit is contained in:
Rasyidan Akbar F. 2025-10-21 13:11:27 +07:00
commit f20e3a6b57
2 changed files with 3 additions and 10 deletions

View file

@ -2,11 +2,7 @@
pkgs.mkShell {
name = "default";
packages = with pkgs; [
git
nixfmt-classic
uv
];
packages = with pkgs; [ git nixfmt-classic uv ];
shellHook = ''
export DOTFILES_ROOT="$PWD"
export XDG_CACHE_HOME="$DOTFILES_ROOT/.cache"

View file

@ -1,8 +1,5 @@
{ config, pkgs, lib, ... }: {
# Import shared cross-platform home configuration
imports = [
../../home/rsydn/base.nix
./programs/aerospace
./programs/ghostty.nix
];
imports =
[ ../../home/rsydn/base.nix ./programs/aerospace ./programs/ghostty.nix ];
}